Skip to content

Commit 63c4ac7

Browse files
committed
Test: update table type to test against (#246)
Following ES#54836, ES/SQL will report its non-alias indices as just 'TABLE', instead of 'BASE TABLE'. (cherry picked from commit 71d2aa7)
1 parent 729b135 commit 63c4ac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _catalog_tables(self, no_table_type_as=""):
132132
res = curs.tables("", "", "", "%").fetchall()
133133
self.assertEqual(len(res), 2)
134134
for i in range(0,10):
135-
self.assertEqual(res[0][i], None if i != 3 else 'BASE TABLE')
135+
self.assertEqual(res[0][i], None if i != 3 else 'TABLE')
136136
self.assertEqual(res[1][i], None if i != 3 else 'VIEW')
137137

138138
# enumerate tables of selected type in catalog

0 commit comments

Comments
 (0)