duckdb-web
duckdb-web copied to clipboard
DuckDB website and documentation
See https://github.com/duckdb/duckdb/issues/11738
See https://github.com/duckdb/postgres_scanner/pull/217
See https://github.com/duckdb/duckdb/issues/11699
See https://github.com/duckdb/duckdb/issues/11727
The TimeZone configuration setting is documented to be for the database system but I have replicated an example in both the rust and Julia api where the TimeZone configuration setting...
See https://github.com/duckdb/duckdb/issues/11620
I was recently trying to familiarising myself with which DuckDB official extensions can be autoloaded or require explicit installation/loading, and noticed that information about this side of things is a...
```sql select icu_sort_key('ö', 'de')=icu_sort_key('o', 'de'); /* returns: FALSE */ select icu_sort_key('o', 'de:ci')=icu_sort_key('O', 'de:ci'); /* returns: FALSE */ ``` I would have expected, that this example returns True since in German...
Page URL: The documentation under UNION states: ` The UNION clause can be used to combine rows from multiple queries. The queries are required to have the same number of...