-
I load a dataset of ~11.3 M points into DuckDB using the following sql:
```sql
CREATE TABLE my_points AS
FROM 'input_data.csv';
INSTALL spatial;
LOAD spatial;
ALTER TABLE my_points ADD C…
-
Calling `ST_Read_Meta('my.shp')` against a vanilla shapefile; subsequent calls to `ST_Read_Meta()` for the same or different shapefiles regularly throw a type mismatch error:
`Mismatch Type Error: …
rcoup updated
2 weeks ago
-
### 🚀 The feature
`duckdb` is not listed among the supported connectors. It would be great to see support and/or documentation showing pandas-ai running with the latest duckdb-sql backend.
### …
-
ping @peterdesmet and @MattBlissett
I've started the work of adding a [new download option](https://www.gbif-uat.org/occurrence/download?occurrence_status=present)
And an [SQL ui](https://www.gbif-u…
-
### Benefit
The Open SGID needs to stay current with support.
### Acceptance Criteria
- [ ] Research minimum version that can support the most esri clients
- [ ] Upgrade the database
### Notes
…
-
### What happens?
- WASM is initialized
- spatial extension loaded and installed
- .xlsx file registered with registerFileHandle using DuckDBDataProtocol.BROWSER_FILEREADER
- query `SELECT * FROM …
-
Just thinking out loud here.
Currently we have an awesome package structure where a lot of modularity, flexibility, but also conciseness of some functions come from a set of `.sql` files that actua…
-
# Background
Hi community,
This issue is for #26878.
ShardingSphere parser engine helps users parse a SQL to get the AST (Abstract Syntax Tree) and visit this tree to get SQLStatement (Java Object). …
-
It would be awesome to add Spark SQL wrapper functions to Spatial Spark, so it would be possible to use someting like in Oracle Spatial:
https://docs.oracle.com/database/122/SPATL/complex-spatial-q…
Tagar updated
7 years ago
-
I know duckdb works well with Pandas DataFrames but I hope for the ability to write SQL the same way on GDFs. As of now, when I write SQL on GDFs it returns this error
```NotImplementedException: Not …