-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#246] Excluding index partitions from reverse engineering
- Loading branch information
1 parent
e612aea
commit d9a2971
Showing
5 changed files
with
34 additions
and
6 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
12 changes: 12 additions & 0 deletions
12
...acle/src/test/resources/platforms/oracle/example1/step1/schema1/table/PARTITIONED_TAB.sql
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,12 @@ | ||
//// CHANGE name=init includeEnvs="noEnvsYet" comment="Want to test INDEX PARTITION clause in reverse engineering, but Docker doesn't support partitioning - ORA-00439: feature not enabled: Partitioning" | ||
CREATE TABLE PARTITIONED_TAB ( | ||
A_ID INT NOT NULL, | ||
B_ID INT NOT NULL | ||
) | ||
GO | ||
|
||
//// CHANGE name=PARTITIONED_TAB_PART | ||
CREATE INDEX PARTITIONED_TAB_PART | ||
ON PARTITIONED_TAB(B_ID) | ||
LOCAL PARALLEL NOLOGGING | ||
GO |
12 changes: 12 additions & 0 deletions
12
...acle/src/test/resources/platforms/oracle/example1/step2/schema1/table/PARTITIONED_TAB.sql
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,12 @@ | ||
//// CHANGE name=init includeEnvs="noEnvsYet" comment="Want to test INDEX PARTITION clause in reverse engineering, but Docker doesn't support partitioning - ORA-00439: feature not enabled: Partitioning" | ||
CREATE TABLE PARTITIONED_TAB ( | ||
A_ID INT NOT NULL, | ||
B_ID INT NOT NULL | ||
) | ||
GO | ||
|
||
//// CHANGE name=PARTITIONED_TAB_PART | ||
CREATE INDEX PARTITIONED_TAB_PART | ||
ON PARTITIONED_TAB(B_ID) | ||
LOCAL PARALLEL NOLOGGING | ||
GO |