Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(duckdb): fix create_table() in database files with spaces in the …
…name If you tried ```python import ibis conn = ibis.duckdb.connect("with space.duckdb") conn.create_table("foo", {"a": [0,1,2]}) ``` then you would get the DDL `CREATE TABLE with space.main."foo" ("a" BIGINT)`. Now, the database name is quoted.
- Loading branch information