-
-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
2f44407
commit 77ee904
Showing
5 changed files
with
210 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -629,3 +629,32 @@ Only users with administrator rights can use this option. | |
(Dmitry Sibiryakov) | ||
|
||
If is used twice, an error is returned. | ||
|
||
|
||
DDL enhancements in Firebird v6. | ||
-------------------------------- | ||
|
||
1) DROP [IF EXISTS] | ||
|
||
Using subclause IF EXISTS, it's now possible to try to drop objects and do not get errors when they di not exists. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
DROP EXCEPTION [IF EXISTS] <exception> | ||
DROP INDEX [IF EXISTS] <index> | ||
DROP PROCEDURE [IF EXISTS] <procedure> | ||
DROP TABLE [IF EXISTS] <table> | ||
DROP TRIGGER [IF EXISTS] <trigger> | ||
DROP VIEW [IF EXISTS] <view> | ||
DROP FILTER [IF EXISTS] <filter> | ||
DROP DOMAIN [IF EXISTS] <domain> | ||
DROP [EXTERNAL] FUNCTION [IF EXISTS] <function> | ||
DROP SHADOW [IF EXISTS] <shadow> | ||
DROP ROLE [IF EXISTS] <role> | ||
DROP GENERATOR [IF EXISTS] <generator> | ||
DROP SEQUENCE [IF EXISTS] <sequence> | ||
DROP COLLATION [IF EXISTS] <collation> | ||
DROP USER [IF EXISTS] <user> [USING PLUGIN <plugin>] | ||
DROP PACKAGE [IF EXISTS] <package> | ||
DROP PACKAGE BODY [IF EXISTS] <package> | ||
DROP [GLOBAL] MAPPING [IF EXISTS] <mapping> | ||
ALTER TABLE <table> DROP [IF EXISTS] <column> | ||
ALTER TABLE <table> DROP CONSTRAINT [IF EXISTS] <constraint> | ||
This comment has been minimized.
Sorry, something went wrong.
hvlad
Member
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
71 shift/reduce conflicts, 22 reduce/reduce conflicts. | ||
94 shift/reduce conflicts, 22 reduce/reduce conflicts. |
Oops, something went wrong.
" di not exists."
should be
" did not exists."