Jeremy Taylor
Jeremy Taylor
Many Kubernetes-native deployment tools (including Helm charts, Google Cloud Marketplace, and AWS Marketplace) expect to generate and manage TLS certificates using PEM-encoded files (`.crt`, `.key`), rather than Java KeyStore (JKS)...
This has been reported as a regression in 2.1, where previously the `openNode` usage across a user's test fixtures was consistently fast (single digit ms), but now it progressively slows...
Re-requesting review on this as it seems the implementation we paired on could benefit from some changes to FixedSizeListVector also. What we paired on looked like: ``` is ZonedDateTimeRange ->...
e.g. often used for displaying data: ``` SELECT relname table_name, lpad(to_char(reltuples, 'FM9,999,999,999'), 13) row_count FROM pg_class LEFT JOIN pg_namespace ON (pg_namespace.oid = pg_class.relnamespace) WHERE nspname NOT IN ('pg_catalog', 'information_schema') AND...
Firstly, it seems `xtdb | 22:27:08.112 [main] INFO xtdb.api.FlightSql - Flight SQL server started, port 9833` only shows up in the `xtdb-aws` (latest edge @ [29786d0](https://github.com/xtdb/xtdb/commit/29786d0eed481425d310b9076d59923864a9a8eb)) container startup when the...
When using FlightSQL with ADBC, DML statements with literal SQL values fail with an internal error, but the same operations work when using parameterized queries via `executemany()`. **Fails:** ```python cursor.execute(...
Currently `\d` works but `\d ` throws an error due to a lack of support for `OPERATOR`/`COLLATE` (at least): ```sql xtdb=> \d product ERROR: Errors parsing SQL statement: - line...
Currently, the tables and columns that can be introspected are limited to the currently connected database. `information_schema` is unavailable for querying across databases.
Per the title - note that an unknown table in the primary database returns a warning (currently #4467) e.g. [Play](https://play.xtdb.com/?version=2.x-SNAPSHOT&type=sql-v2&enc=2&txs=NobwRAjgrgpgTgTzALjAFzrMAadAPAZxTAEEAVMkgYQAkACAEXJICESBlAUTrQAcBjABZ0A6gEky9ACRSAOgDs6dADYB7AObI6AQjHyAsjAC2qxAqVKYvVUK0BGc3QJpTAQ3Uwt2gErHVaGEclVQAjACsYfjR2FzhPHXYAZiCLEKh%2BAGsYNC1ZMDw0ABMQgFpeZVcEEsLXNFcCbII8lKVeOIAzAEs8XPQBQRKCdoAGADphhzAFGRwwAgRnYxK0TqMYFHkoZWUAX2xwNEJiLgAZTioyOgAqOgAxbwB5fR5%2B0dNC%2BDoTsX0JOjtZvNFkZlqt1shNts9gcjqhTudLjd7k8XkI3nAPnACF8fn8AbggQEQSs1hstrt9vgiHDOGcLtc7o9nu1VKoANyAhZE0GkiHknYAXSAA)
Assuming lots of redundant INSERTs (or no-op UPDATEs) have been made against the same ID, users may need to be able to analyze the valid-time history without the noise of...