Browse Source

HPCC-8224 Fast compression issues

Default to off

Signed-off-by: Jake Smith <jake.smith@lexisnexis.com>
Jake Smith 12 years ago
parent
commit
5816d685a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/thorhelper/thorcommon.hpp

+ 1 - 1
common/thorhelper/thorcommon.hpp

@@ -80,7 +80,7 @@ enum RowReaderWriterFlags
     rw_autoflush      = 0x40,
     rw_buffered       = 0x80
 };
-#define DEFAULT_RWFLAGS (rw_buffered|rw_autoflush|rw_fastlz|rw_compressblkcrc)
+#define DEFAULT_RWFLAGS (rw_buffered|rw_autoflush|rw_compressblkcrc)
 inline bool TestRwFlag(unsigned flags, RowReaderWriterFlags flag) { return 0 != (flags & flag); }
 
 interface IExtRowStream: extends IRowStream