Add test.

This commit is contained in:
Nikolai Kochetov 2021-01-22 16:30:01 +03:00
parent 41afc5938b
commit 70b4199869
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{
"meta":
[
{
"name": "a",
"type": "String"
}
],
"data":
[
],
"rows": 0
}

View File

@ -0,0 +1,10 @@
DROP TABLE IF EXISTS t;
DROP TABLE IF EXISTS t_v;
CREATE TABLE t ( a String ) ENGINE = Memory();
CREATE VIEW t_v AS SELECT * FROM t;
SET output_format_write_statistics = 0;
SELECT * FROM t_v FORMAT JSON SETTINGS extremes = 1;
DROP TABLE IF EXISTS t;
DROP TABLE IF EXISTS t_v;