mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 13:52:59 +00:00
* feat: create database with options * fix: clippy * fix: clippy * feat: rebase and add Display test * feat: sqlness test for creating database with options * address comments Signed-off-by: tison <wander4096@gmail.com> * fixup tests Signed-off-by: tison <wander4096@gmail.com> * catch up Signed-off-by: tison <wander4096@gmail.com> * DefaultOnNull Signed-off-by: tison <wander4096@gmail.com> --------- Signed-off-by: tison <wander4096@gmail.com> Co-authored-by: tison <wander4096@gmail.com>
14 lines
220 B
SQL
14 lines
220 B
SQL
create database '㊙️database';
|
||
|
||
create database illegal-database;
|
||
|
||
create database 'illegal-database';
|
||
|
||
create database mydb with (ttl = '1h');
|
||
|
||
show databases;
|
||
|
||
drop database 'illegal-database';
|
||
|
||
drop database mydb;
|