diff options
Diffstat (limited to 'storage/connect/colblk.cpp')
-rw-r--r-- | storage/connect/colblk.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/connect/colblk.cpp b/storage/connect/colblk.cpp index 027ac5710ab..cdbf6f4b42b 100644 --- a/storage/connect/colblk.cpp +++ b/storage/connect/colblk.cpp @@ -40,16 +40,17 @@ COLBLK::COLBLK(PCOLDEF cdp, PTDB tdbp, int i) Long = cdp->Long; Buf_Type = cdp->Buf_Type; ColUse |= cdp->Flags; // Used by CONNECT + Nullable = !!(cdp->Flags & U_NULLS); } else { Name = NULL; memset(&Format, 0, sizeof(FORMAT)); Opt = 0; Long = 0; Buf_Type = TYPE_ERROR; + Nullable = false; } // endif cdp To_Tdb = tdbp; - Nullable = false; Status = BUF_NO; //Value = NULL; done in XOBJECT constructor To_Kcol = NULL; |