|
@@ -229,6 +229,7 @@ public:
|
|
|
CCsvPartitioner(const FileFormat & _format);
|
|
|
|
|
|
virtual void setTarget(IOutputProcessor * _target);
|
|
|
+
|
|
|
virtual void getRecordStructure(StringBuffer & _recordStructure) { _recordStructure = recordStructure; }
|
|
|
virtual void setRecordStructurePresent( bool _isRecordStructurePresent) {isRecordStructurePresent = _isRecordStructurePresent;}
|
|
|
virtual unsigned getFieldCount(void) { return fieldCount; }
|
|
@@ -246,6 +247,7 @@ protected:
|
|
|
unsigned maxElementLength;
|
|
|
FileFormat format;
|
|
|
StringMatcher matcher;
|
|
|
+
|
|
|
bool isRecordStructurePresent;
|
|
|
StringBuffer recordStructure;
|
|
|
unsigned fieldCount;
|