-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
77 additions
and
4 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
orcas_integrationstest/tests/test_relevant_only/erzeuge_ausgangszustand.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 @@ | ||
create table tab_view | ||
( | ||
col_add_ix_1 number(15) not null, | ||
col_add_ix_2 number(15) not null | ||
); | ||
|
||
create materialized view mview as select col_add_ix_1, col_add_ix_2 from tab_view; | ||
|
||
create sequence seq increment by 15; | ||
|
||
|
||
|
13 changes: 13 additions & 0 deletions
13
orcas_integrationstest/tests/test_relevant_only/erzeuge_zielzustand.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,13 @@ | ||
create table tab_view | ||
( | ||
col_add_ix_1 number(15) not null, | ||
col_add_ix_2 number(15) not null, | ||
col_add_ix_3 number(15) not null | ||
); | ||
|
||
create materialized view mview as select col_add_ix_1, col_add_ix_2, col_add_ix_3 from tab_view; | ||
|
||
create sequence seq; | ||
|
||
|
||
|
5 changes: 5 additions & 0 deletions
5
orcas_integrationstest/tests/test_relevant_only/parameter.properties
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,5 @@ | ||
dropmode = true | ||
required_feature_list=materialized_views | ||
test_extract = true | ||
relevantFiles = mview.sql,seq.sql,tab_view.sql | ||
test_extract = false |
5 changes: 5 additions & 0 deletions
5
orcas_integrationstest/tests/test_relevant_only/tabellen/mview.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,5 @@ | ||
|
||
|
||
create materialized view mview as "select col_add_ix_1, col_add_ix_2, col_add_ix_3 from tab_view"; | ||
|
||
|
5 changes: 5 additions & 0 deletions
5
orcas_integrationstest/tests/test_relevant_only/tabellen/mview_ignore.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,5 @@ | ||
|
||
|
||
create materialized view mview_ignore as "select col_add_ix_1, col_add_ix_2, col_add_ix_3 from tab_view"; | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
orcas_integrationstest/tests/test_relevant_only/tabellen/seq.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,3 @@ | ||
|
||
create sequence seq; | ||
|
3 changes: 3 additions & 0 deletions
3
orcas_integrationstest/tests/test_relevant_only/tabellen/seq_ignore.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,3 @@ | ||
|
||
create sequence seq_ignore; | ||
|
8 changes: 8 additions & 0 deletions
8
orcas_integrationstest/tests/test_relevant_only/tabellen/tab_view.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,8 @@ | ||
|
||
create table tab_view | ||
( | ||
col_add_ix_1 number(15) not null, | ||
col_add_ix_2 number(15) not null, | ||
col_add_ix_3 number(15) not null | ||
); | ||
|
8 changes: 8 additions & 0 deletions
8
orcas_integrationstest/tests/test_relevant_only/tabellen/tab_view_ignore.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,8 @@ | ||
|
||
create table tab_view_ignore | ||
( | ||
col_add_ix_1 number(15) not null, | ||
col_add_ix_2 number(15) not null, | ||
col_add_ix_3 number(15) not null | ||
); | ||
|