diff options
Diffstat (limited to 'storage/connect/tabfmt.cpp')
-rw-r--r-- | storage/connect/tabfmt.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/storage/connect/tabfmt.cpp b/storage/connect/tabfmt.cpp index 9a121b9ab9a..18ecaae430a 100644 --- a/storage/connect/tabfmt.cpp +++ b/storage/connect/tabfmt.cpp @@ -459,9 +459,12 @@ PTDB CSVDEF::GetTable(PGLOBAL g, MODE mode) if (Compressed == 1) txfp = new(g) ZIPFAM(this); else { +#if defined(BLK_INDX) + txfp = new(g) ZLBFAM(this); +#else // !BLK_INDX strcpy(g->Message, "Compress 2 not supported yet"); -// txfp = new(g) ZLBFAM(defp); return NULL; +#endif // !BLK_INDX } // endelse #else // !ZIP_SUPPORT strcpy(g->Message, "Compress not supported"); @@ -1272,6 +1275,7 @@ CSVCOL::CSVCOL(CSVCOL *col1, PTDB tdbp) : DOSCOL(col1, tdbp) Fldnum = col1->Fldnum; } // end of CSVCOL copy constructor +#if defined(BLK_INDX) /***********************************************************************/ /* VarSize: This function tells UpdateDB whether or not the block */ /* optimization file must be redone if this column is updated, even */ @@ -1290,6 +1294,7 @@ bool CSVCOL::VarSize(void) return false; } // end VarSize +#endif // BLK_INDX /***********************************************************************/ /* ReadColumn: call DOSCOL::ReadColumn after having set the offet */ |