Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
45 changed files
with
337 additions
and
337 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
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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| CREATE TABLE t1 (a INT); | ||
| CREATE INDEX t1a ON t1 (a); | ||
| DROP INDEX t1a ON t1; | ||
| DROP TABLE t1; | ||
| CREATE TABLE t2 (a INT); | ||
| ALTER TABLE t2 RENAME t2; | ||
| RENAME TABLE t2 TO t3; | ||
| DROP TABLE t3; | ||
| CREATE TABLE t4 (a INT); | ||
| PREPARE stmt FROM 'ALTER TABLE t4 MODIFY a INT DEFAULT 1'; | ||
| EXECUTE stmt; | ||
| DEALLOCATE PREPARE stmt; | ||
| DROP TABLE t4; | ||
|
|
||
| CREATE SEQUENCE s4; | ||
| ALTER SEQUENCE s4 MAXVALUE 100; | ||
| PREPARE stmt FROM 'ALTER SEQUENCE s4 MAXVALUE=101'; | ||
| EXECUTE stmt; | ||
| DEALLOCATE PREPARE stmt; | ||
| DROP SEQUENCE s4; |
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
Oops, something went wrong.