mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

* origin/topic/bernhard/sqlite: fix a few small rough edges (mostly comments that do no longer apply) fix bug in input-manager regarding enums that a writer reads without 0-terminating the string actually make sqlite work again (tests passed because the writer was not actually defined because of the define.) add sqlite distribution. fix warnings, update baselines, handle rotation add sqlite tests and fix small vector/set escaping bugs fix small bug with vectors and sets. make work with newer AsciiFormatter. start adding a different text for empty records for the sqlite writer. no, you will never guess from where I copied this file... make sqlite support more or less work for logging and input make sqlite-writer more stable. make it compile with new version of AsciiInputOutput and adapt to AsciiInputOutput - seems to work... make it compile add SQLite reader. ...adapt to new api... now the writer supports tables and vectors. basic sqlite writer seems to work.
17 lines
514 B
Text
17 lines
514 B
Text
##! Interface for the SQLite log writer. Redefinable options are available
|
|
##! to tweak the output format of the SQLite reader.
|
|
|
|
module LogSQLite;
|
|
|
|
export {
|
|
## Separator between set elements.
|
|
const set_separator = Log::set_separator &redef;
|
|
|
|
## String to use for an unset &optional field.
|
|
const unset_field = Log::unset_field &redef;
|
|
|
|
## String to use for empty fields. This should be different from
|
|
## *unset_field* to make the output non-ambigious.
|
|
const empty_field = Log::empty_field &redef;
|
|
}
|
|
|