File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/crate/client/sqlalchemy/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,18 +86,18 @@ def test_get_table_names(self):
8686
8787 insp = inspect (self .character .metadata .bind )
8888 self .engine .dialect .server_version_info = (2 , 0 , 0 )
89- eq_ (insp .get_table_names (self . connection , "doc" ),
89+ eq_ (insp .get_table_names (schema = "doc" ),
9090 ['t1' , 't2' ])
9191 in_ ("AND table_type = 'BASE TABLE' ORDER BY" , self .executed_statement )
9292
9393 insp = inspect (self .character .metadata .bind )
9494 self .engine .dialect .server_version_info = (1 , 0 , 0 )
95- eq_ (insp .get_table_names (self . connection , "doc" ),
95+ eq_ (insp .get_table_names (schema = "doc" ),
9696 ['t1' , 't2' ])
9797 in_ ("WHERE table_schema = ? ORDER BY" , self .executed_statement )
9898
9999 insp = inspect (self .character .metadata .bind )
100100 self .engine .dialect .server_version_info = (0 , 56 , 0 )
101- eq_ (insp .get_table_names (self . connection , "doc" ),
101+ eq_ (insp .get_table_names (schema = "doc" ),
102102 ['t1' , 't2' ])
103103 in_ ("WHERE schema_name = ? ORDER BY" , self .executed_statement )
You can’t perform that action at this time.
0 commit comments