G
G
Known changes: - `cloud_addr` (`LocalClientOpts`, `RpcProxyArgs`, `PgProxyArgs`) - Python: `cloud_addr` Possible changes: Note: `cloud_url` is listed in cloud dashboard, blog post, docs etc. It is a wider change - `cloud_url`:...
See: https://github.com/GlareDB/glaredb/pull/1767#discussion_r1334873698
As a follow-up to #2670: > we could probably write tests for this using mino or the mock gcs fixture _Originally posted by @tychoish in https://github.com/GlareDB/glaredb/issues/2670#issuecomment-1956605809_
Query: ```sql SELECT DISTINCT d.oid, d.database_name, t.schema_name, t.table_name, d.datasource FROM glare_catalog.databases AS d LEFT JOIN glare_catalog.cached_external_database_tables AS t ON t.database_oid = d.oid WHERE d.external ORDER BY d.database_name, t.schema_name, t.table_name; ```...
If I switch `to_pandas` to `to_polars`, everything works as expected. ```python import glaredb import pandas as pd import polars as pl con = glaredb.connect("glaredb://...") df = con.sql("SELECT * FROM './b.parquet'").to_pandas()...
In the `v0.8.1` REPL, I tried variations of this query: ```sql COPY (SELECT * FROM bq.austin_bikeshare.bikeshare_trips) TO './bikeshare_trips.csv'; COPY (SELECT * FROM bq.austin_bikeshare.bikeshare_trips) TO LOCAL FORMAT csv OPTIONS ( location...
Querying anything from BQ is significantly slower than other data sources in my anecdotal experience. This is my attempt to put together a demonstration. Note, I did see #716 which...
In `v0.8.1`, if I run `glaredb --version`, I get: ```shell $ glaredb --version GlareDB 0.8.1 ``` A few questions: - should there be a `v` in front of the number?...
I think it would be useful to expose some of the details of data sources. What exactly we expose is tricky because: - a) not all data sources are created...
We reverted the upgrade of (upload|download)-artifact actions from v4 back to v3. In order to migrate to v4 without failures, we need to follow their migration guide, and specifically ensure...