add drop table support
This commit is contained in:
parent
f0baa3c37b
commit
8291fbaa44
4 changed files with 29 additions and 16 deletions
tools/Language/SQL/SimpleSQL
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue