Try to stabilize test

This commit is contained in:
Robert Schulze 2023-09-22 11:02:40 +00:00
parent 01b8825733
commit 0554cdca65
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -29,8 +29,8 @@ SELECT count() FROM INFORMATION_SCHEMA.tables WHERE table_schema=currentDatabase
SELECT count() FROM INFORMATION_schema.tables WHERE table_schema = currentDatabase() AND table_name = 't'; -- { serverError UNKNOWN_DATABASE }
SELECT count() FROM information_schema.taBLES WHERE table_schema =currentDatabase() AND table_name = 't'; -- { serverError UNKNOWN_TABLE }
SELECT * FROM information_schema.key_column_usage WHERE table_name = 'kcu';
SELECT * FROM information_schema.key_column_usage WHERE table_name = 'kcu2';
SELECT * FROM information_schema.key_column_usage WHERE table_schema = currentDatabase() AND table_name = 'kcu';
SELECT * FROM information_schema.key_column_usage WHERE table_schema = currentDatabase() AND table_name = 'kcu2';
SELECT * FROM information_schema.referential_constraints;