mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-27 16:32:54 +00:00
24 lines
518 B
Plaintext
24 lines
518 B
Plaintext
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 |
|
||
+--------------------+
|
||
|