fix: some problems of parser and planner

This commit is contained in:
Xiaoyu Wang 2022-05-06 19:45:01 +08:00
parent 3ac18d91a8
commit 8e7cfb7f02
1 changed files with 2 additions and 2 deletions

View File

@ -91,9 +91,9 @@ print =============== create normal table
sql create database ndb sql create database ndb
sql use ndb sql use ndb
sql create table nt0 (ts timestamp, i int) sql create table nt0 (ts timestamp, i int)
sql create table if not exists nt0 (ts timestamp, i int) # sql create table if not exists nt0 (ts timestamp, i int)
sql create table nt1 (ts timestamp, i int) sql create table nt1 (ts timestamp, i int)
sql create table if not exists nt1 (ts timestamp, i int) # sql create table if not exists nt1 (ts timestamp, i int)
sql create table if not exists nt3 (ts timestamp, i int) sql create table if not exists nt3 (ts timestamp, i int)
sql show tables sql show tables