Go to the source code of this file.
Classes | |
struct | FlatFileExecStreamParams |
FlatFileExecStreamParams defines parameters for instantiating a FlatFileExecStream. More... | |
class | FlatFileExecStream |
FlatFileExecStream parses a text file and produces tuples according to a specified column format. More... | |
Enumerations | |
enum | FlatFileMode { FLATFILE_MODE_QUERY = 0, FLATFILE_MODE_DESCRIBE, FLATFILE_MODE_SAMPLE, FLATFILE_MODE_QUERY_TEXT } |
Describes the type of scan to be performed by an ExecStream. More... |
enum FlatFileMode |
Describes the type of scan to be performed by an ExecStream.
FLATFILE_MODE_QUERY | |
FLATFILE_MODE_DESCRIBE | |
FLATFILE_MODE_SAMPLE | |
FLATFILE_MODE_QUERY_TEXT |
Definition at line 34 of file FlatFileExecStream.h.
00035 { 00036 FLATFILE_MODE_QUERY = 0, 00037 FLATFILE_MODE_DESCRIBE, 00038 FLATFILE_MODE_SAMPLE, 00039 FLATFILE_MODE_QUERY_TEXT 00040 };