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 2a7c201 commit c9ccd98Copy full SHA for c9ccd98
enginetest/queries/information_schema_queries.go
@@ -38,7 +38,7 @@ var InfoSchemaQueries = []QueryTest{
38
CASE WHEN table_schema = 'mysql' OR table_schema = 'performance_schema' THEN 'SYSTEM TABLE'
39
ELSE 'TABLE' END
40
WHEN table_type = 'TEMPORARY' THEN 'LOCAL_TEMPORARY'
41
- ELSE table_type END AS TABLE_TYPE FROM information_schema.tables;`,
+ ELSE table_type END AS TABLE_TYPE FROM information_schema.tables ORDER BY table_name LIMIT 1;`,
42
Expected: []sql.Row{{"information_schema", nil, "administrable_role_authorizations", "SYSTEM VIEW"}},
43
},
44
{
0 commit comments