DBZ-3962 Support DROP TABLE using recycle bin as-clause

This commit is contained in:
Chris Cranford 2021-09-02 09:16:06 -04:00 committed by Gunnar Morling
parent 093408bba8
commit 82e568ae34
2 changed files with 3 additions and 2 deletions

View File

@ -2169,7 +2169,7 @@ truncate_table
; ;
drop_table drop_table
: DROP TABLE tableview_name (AS tableview_name)? (CASCADE CONSTRAINTS)? PURGE? SEMICOLON : DROP TABLE tableview_name (AS tableview_name)? (CASCADE CONSTRAINTS)? PURGE? (AS quoted_string)? SEMICOLON
; ;
drop_view drop_view

View File

@ -1,2 +1,3 @@
-- Drop Table -- Drop Table
DROP TABLE TEST.STUDENT CASCADE CONSTRAINTS; DROP TABLE TEST.STUDENT CASCADE CONSTRAINTS;
drop table inbox cascade constraints AS "BIN$yv+1ra/roTjgUwEBAH+ByQ==$0" ;