add stateless tests

This commit is contained in:
taiyang-li 2022-01-20 19:41:35 +08:00
parent 8886ac61e7
commit 4db3ee2edd
2 changed files with 13 additions and 1 deletions

View File

@ -7,3 +7,14 @@ AlterQuery t1 (children 2)
Function today (children 1)
ExpressionList
Identifier t1
CreateFunctionQuery double (children 2)
Identifier double
Function lambda (children 1)
ExpressionList (children 2)
Function tuple (children 1)
ExpressionList (children 1)
Identifier n
Function multiply (children 1)
ExpressionList (children 2)
Literal UInt64_2
Identifier n

View File

@ -1,2 +1,3 @@
explain ast; -- { clientError 62 }
explain ast alter table t1 delete where date = today()
explain ast alter table t1 delete where date = today();
explain ast create function double AS (n) -> 2*n;