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 95104e5 commit 6b0d1f0Copy full SHA for 6b0d1f0
ibis/backends/oracle/tests/test_client.py
@@ -82,7 +82,8 @@ def test_list_tables_schema_warning_refactor(con):
82
def test_from_url():
83
new_con = ibis.connect("oracle://ibis:ibis@localhost:1521/IBIS_TESTING")
84
85
- assert new_con.list_tables()
+ result = new_con.sql('SELECT 1 AS "a"').to_pandas()
86
+ assert result.a.iat[0] == 1
87
88
89
def test_invalid_port(con):
0 commit comments