Files
greptimedb/tests/cases/standalone/common/create/create_database.result
dennis zhuang e6819412c5 refactor: show tables and show databases (#3423)
* refactor: show tables and show databases

* chore: clean code
2024-03-04 06:15:17 +00:00

25 lines
541 B
Plaintext
Raw 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;
+--------------------+
| Database |
+--------------------+
| greptime_private |
| illegal-database |
| information_schema |
| public |
| test_public_schema |
+--------------------+