File tree 1 file changed +3
-3
lines changed
src/crate/client/sqlalchemy/tests
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):
86
86
87
87
insp = inspect (self .character .metadata .bind )
88
88
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" ),
90
90
['t1' , 't2' ])
91
91
in_ ("AND table_type = 'BASE TABLE' ORDER BY" , self .executed_statement )
92
92
93
93
insp = inspect (self .character .metadata .bind )
94
94
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" ),
96
96
['t1' , 't2' ])
97
97
in_ ("WHERE table_schema = ? ORDER BY" , self .executed_statement )
98
98
99
99
insp = inspect (self .character .metadata .bind )
100
100
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" ),
102
102
['t1' , 't2' ])
103
103
in_ ("WHERE schema_name = ? ORDER BY" , self .executed_statement )
You can’t perform that action at this time.
0 commit comments