Jeremy Taylor
Jeremy Taylor
Noting that our implementation for the expression diverges from Postgres where `SELECT GENERATE_SERIES(0,5)` in Postgres will return multiple rows (i.e. the same as `SELECT * FROM GENERATE_SERIES(0,5)`), whereas XT returns...
~~Setting `autocommit=True` now makes things work - good enough for now.~~
Just spotted that autoCommit is actually causing multiple entries in `_txs` - needs further investigation Adding `await cur.execute("START TRANSACTION READ WRITE")` causes: ``` cb0>: Errors parsing SQL statement: - line...
This looks almost identical to https://github.com/xtdb/xtdb/issues/3566 except for the actual error thrown :thinking: (same stack trace around `uploadXXXX.arrow -> log-l00-XXXX.arrow` whilst doing `xtdb.trie$write_live_trie`)
Hey @mjholub just wanted to follow up and say that I believe this is now covered by [PATCH](https://docs.xtdb.com/reference/main/sql/txs.html#patch) (you'll need to use SQL for this). In the general case though...
Let's add a Google docker image also when this gets done
Just adding my experience here in case it's useful - I tried setting `:exit-on-close? false` which worked to prevent the REPL from shutting down when I closed the window via...
Relevant context from the earlier PR https://github.com/xtdb/xtdb/pull/3727 > This adds supports for getting intervals out of XT via postgres. It doesn't add binary encoding support as that seems to be...
Related to #4467
LLM hypothesis: > out-cols is retaining ordinal-vec > The out-cols list contains ordinal-vec when ordinality-column is provided. > If out-cols is used across multiple invocations of tryAdvance, then ordinal-vec might...