Tal Gluck
Tal Gluck
## Description I'm hitting this error as part of a dbt run in GlareDB Cloud ``` Database Error in model nyc_sales_jan_2019_feb_2019 (models/demo/nyc_sales_jan_2019_feb_2019.sql) Optimizer rule 'common_sub_expression_eliminate' failed caused by Schema error...
## Description I would expect this to work: ```sql insert into my_table ("column1", "column2", "column3") select "column1", "column2", "column3" from my_other_table ``` But it currently doesn't work if you specify...
## Description I would expect this to work: ```sql insert into my_table (select * from my_other_table) ``` It currently doesn't work with the parentheses. This will work though: ```sql insert...
## Description I'd like to be able to rename columns using `ALTER TABLE`, but this appears to not be implemented. I tried ```sql alter table nyc_sales rename column "ease-ment" to...
## Description It should be possible to query directly from a google sheets url like: ```python sheet_key = "1NI0I2s2Hw-KPK32d7vMqLGetI9FBzYAfTcRm1j7L11Q" sheet_name = "Sheet1" url = f"https://docs.google.com/spreadsheet/ccc?key={sheet_key}&sheet={sheet_name}&output=csv" con.sql( f"SELECT * FROM '{url}'"...
## Description See also #1577 When attempting to use Great Expectations with GlareDB (using a Postgres connection string), I get ``` InternalError: (psycopg2.errors.InternalError_) Casting expressions to regclass unsupported ``` Full...
## Description When attempting to use COPY TO from Snowflake to Delta table, I hit the following error: ```shell DataFusionErrorException: External error: Arrow error: Parser error: can't parse the string...
## Description I'm trying to connect [SuperDuperDB](https://docs.superduperdb.com/docs/get_started/environment) to GlareDB Cloud using a posgres connection, and I get the below error. The command that raises this is ```python from superduperdb import...
## Description Currently I'm hitting an issue when I try and use `read_lance` for a Lance table on S3. When I use `read_csv` on another object in the same bucket...
## Description Currently, when copying to a Delta table, a user needs to create an empty directory, and then pass that empty directory in to the COPY TO command, e.g.:...