ensure you can export a version 0 DB using a new binary

This commit is contained in:
Doug Hoyte
2023-02-09 04:31:31 -05:00
parent cdb25aed45
commit 3d4b8853f1
11 changed files with 44 additions and 28 deletions

View File

@ -31,7 +31,7 @@ tables:
type: ubytes
indices:
createdAt:
created_at:
integer: true
receivedAt:
integer: true
@ -56,8 +56,8 @@ tables:
indexPrelude: |
auto *flat = v.flat_nested();
createdAt = flat->created_at();
uint64_t indexTime = *createdAt;
created_at = flat->created_at();
uint64_t indexTime = *created_at;
receivedAt = v.receivedAt();
id = makeKey_StringUint64(sv(flat->id()), indexTime);