skdb
skdb copied to clipboard
SKDB is an embedded SQL database that stays in sync.
I noticed that if tailing a reactive view built on a table I: - do an insert in to the source table, the tail outputs the update instantly - do...
Syncs postgres tables with SKDB tables. Not yet productionised.
Cf. https://github.com/SkipLabs/skdb/pull/231#pullrequestreview-2060279150
According to the error message (`Did you mean uppercase, uppercase or uppercase?`), the handling of `@synonym` seems broken. ``` File "src/build_runner.sk", line 264, characters 26-47: The field upper is undefined....
The current 32 bit implementation of memcpy performs word-by-word copies tacitly assuming that the source and destination are word-aligned. For the use of memcpy to concatenate strings, the destination need...
This PR homogenizes the memory allocators between persistent and non-persistent modes.
``` skdb> select 'foo' || 'bar'; ┌──────────┐ │ col │ ├──────────┤ │ "foobar" │ └──────────┘ skdb> create table test (x text); skdb> insert into test values ('foo'); skdb> insert into...