mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-18 14:00:39 +00:00
* fix: store raw objname internally Signed-off-by: tison <wander4096@gmail.com> * add a utility Signed-off-by: tison <wander4096@gmail.com> * add a sqlness test case Signed-off-by: tison <wander4096@gmail.com> * cargo clippy Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com>
20 lines
397 B
Plaintext
20 lines
397 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
|
|
|
|
show databases;
|
|
|
|
+--------------------+
|
|
| Schemas |
|
|
+--------------------+
|
|
| illegal-database |
|
|
| information_schema |
|
|
| public |
|
|
| test_public_schema |
|
|
+--------------------+
|
|
|