Mark
Mark
Fixes https://github.com/duckdblabs/duckdb-internal/issues/3317
This PR reworks the generated `EnumUtil` code to have a smaller code and binary footprint, and to allow better error messages to be emitted when no matching values are found....
See [here](https://www.postgresql.org/docs/9.1/datatype-numeric.html). This is essentially a shortcut for creating a sequence, and assigning that sequence as the default value for the column.
### What happens? `TIMESTAMP WITH TIME ZONE` types do not render any result in the shell. ### To Reproduce ```sql SELECT now(); ``` [Shell link](https://shell.duckdb.org/#queries=v0,SELECT-now()~) ### Browser/Environment: Safari/Chrome ### Device:...
Fix #272 Also bump DuckDB to include https://github.com/duckdb/duckdb/pull/15966 - which enables this change.
This test is sporadically failing in CI due to the test itself being wrong. We write, in-order, to `main_db.integers` followed by writing to `other_db.ranges`. Depending on when the abort happens,...
Fixes #17802 Fixes #20053 This PR fixes an issue where primary key/unique constraints are over-eager in the presence of multiple transactions. The source of this issue is that indexes in...
When shortening columns we do not shorten them below `config.max_col_width` (default 20 characters). In the new shortening code, we accidentally applied this limit twice, i.e. we would compute the "max...