diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2026-01-17 19:40:47 +0000 |
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2026-01-17 20:33:37 +0000 |
| commit | 34051da2f27ffa40d0b6d20ae891a497fe73bfe5 (patch) | |
| tree | 3f54e8ef762d980fd159f5fcee8ccdfe4a1b5b07 /src/schema.sql | |
| parent | 9f1dfacb0f236da5f0413ac20e3376388df7d798 (diff) | |
| download | webstat-34051da2f27ffa40d0b6d20ae891a497fe73bfe5.tar.bz2 webstat-34051da2f27ffa40d0b6d20ae891a497fe73bfe5.tar.xz webstat-34051da2f27ffa40d0b6d20ae891a497fe73bfe5.zip | |
Attempt to save uninsertable log lines to the entities table
If that fails, we still park them as before, such as when the DB is
unavailable. Those which are saved as entities require investigation why
they couldn't be saved, much like UnparsableLines.
Diffstat (limited to 'src/schema.sql')
| -rw-r--r-- | src/schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/schema.sql b/src/schema.sql index d04535e..7648b79 100644 --- a/src/schema.sql +++ b/src/schema.sql @@ -27,7 +27,8 @@ CREATE TYPE entity AS ENUM( 'query_string', 'referrer', 'user_agent', - 'unparsable_line' + 'unparsable_line', + 'uninsertable_line' ); CREATE TABLE entities( |
