Files
greptimedb/tests/cases/standalone/common/create/create_database.result
2023-11-28 02:47:03 +00:00

24 lines
518 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create database illegal-database;
Error: 1001(Unsupported), SQL statement is not supported: create database illegal-database;, keyword: -
create database 'illegal-database';
Affected Rows: 1
create database '㊙database';
Error: 1002(Unexpected), Unexpected, violated: Invalid database name: ㊙database
show databases;
+--------------------+
| Schemas |
+--------------------+
| illegal-database |
| information_schema |
| public |
| test_public_schema |
+--------------------+