1
Fork 0

add drop table support

This commit is contained in:
Jake Wheat 2015-08-02 23:27:09 +03:00
parent f0baa3c37b
commit 8291fbaa44
4 changed files with 29 additions and 16 deletions
tools/Language/SQL/SimpleSQL

View file

@ -1032,9 +1032,14 @@ defintely skip
<drop table statement> ::=
DROP TABLE <table name> <drop behavior>
drop table t
drop table t cascade
drop table t restrict
> ,(TestStatement SQL2011
> "drop table t"
> $ DropTable [Name "t"] DefaultDropBehaviour)
> ,(TestStatement SQL2011
> "drop table t restrict"
> $ DropTable [Name "t"] Restrict)
11.32 <view definition>