Alon Agmon
Alon Agmon
Hi! Whenever any DBT command first runs then the following query is run to check the existence of views and tables on the entire catalog. However, when the default catalog...
Is Connection thread safe? can it be used from multiple threads without lock? My use case is an in-mem table in a web service that runs queries on the mem...
I have a simple iceberg table that I can query using DataFusion ``` +----+----------+-----+------------+ | id | name | age | dt | +----+----------+-----+------------+ | 2 | Jane | 20...
We use Glue to store metadata of hundreds of thousands of tables, spanning dozens of schemas (many of which are not Iceberg tables). It would be a great feature to...
Added PR to bump version on freetype-rs in order to prevent a conflict with cairo-rs https://github.com/rockyzhengwu/rspdf/pull/2
Partly closes #16303 Introduces glob() table function that allows running queries on multiple files, like: ``` SELECT id FROM glob('s3://tests/data/file-a*.csv'); SELECT id FROM glob('s3://tests/*/*.csv'); ``` note that the latter statement...
Partly closes #16303 The purpose of this PR is to enable using CREATE command with glob pattern and a URL scheme - i.e., ``` CREATE EXTERNAL TABLE ee3 STORED AS...