diff --git a/compatibility/flightsql/python/flightsql_test.py b/compatibility/flightsql/python/flightsql_test.py index 47d3406..3860840 100644 --- a/compatibility/flightsql/python/flightsql_test.py +++ b/compatibility/flightsql/python/flightsql_test.py @@ -37,12 +37,11 @@ def test_insert_and_select(self): """Test inserting data and selecting it back to verify correctness.""" with self.conn.cursor() as cursor: # Insert sample data - cursor.execute("SET search_path TO myduck") - cursor.execute("INSERT INTO intTable (id, name, value) VALUES (1, 'TestName', 100)") - cursor.execute("INSERT INTO intTable (id, name, value) VALUES (2, 'AnotherName', 200)") + cursor.execute("INSERT INTO myduck.intTable (id, name, value) VALUES (1, 'TestName', 100)") + cursor.execute("INSERT INTO myduck.intTable (id, name, value) VALUES (2, 'AnotherName', 200)") # Select data from the table - cursor.execute("SELECT * FROM intTable") + cursor.execute("SELECT * FROM myduck.intTable") rows = cursor.fetchall() # Expected result after insertions