We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfa84c1 commit e3e4b96Copy full SHA for e3e4b96
tests/fast/test_insert.py
@@ -27,4 +27,8 @@ def test_insert_with_schema(self, duckdb_cursor):
27
res = duckdb_cursor.table("not_main.tbl").fetchall()
28
assert len(res) == 10
29
30
- duckdb_cursor.table("not_main.tbl").insert((42,))
+ # Insert into a schema-qualified table should work; table has a single column from range(10)
31
+ duckdb_cursor.table("not_main.tbl").insert([42])
32
+ res2 = duckdb_cursor.table("not_main.tbl").fetchall()
33
+ assert len(res2) == 11
34
+ assert (42,) in res2
0 commit comments