Skip to content

Commit 618f4d7

Browse files
committed
del tmp test
1 parent 77e301d commit 618f4d7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

parser_test.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,3 @@ alter table db1.table1 add (name varchar(255));`)
7474
assert.IsType(t, &ast.AlterTableStmt{}, stmt[1])
7575
assert.Equal(t, "alter table db1.table1 add (name varchar(255));", stmt[1].Text())
7676
}
77-
78-
func TestParser(t *testing.T) {
79-
stmt, err := Parser(`create table TEST.T21 (t CHAR(255));`)
80-
assert.NoError(t, err)
81-
assert.Equal(t, 2, len(stmt))
82-
}

0 commit comments

Comments
 (0)