Skip to content

Commit

Permalink
DBZ-7805 Support out-of-order tablespace-clause
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros authored and jpechane committed Apr 29, 2024
1 parent e9f603e commit 978f4a6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1894,6 +1894,7 @@ relational_table
physical_properties?
column_properties?
table_partitioning_clauses?
segment_attributes_clause? // LogMiner-specific
(CACHE | NOCACHE)? (RESULT_CACHE '(' MODE (DEFAULT | FORCE) ')')?
parallel_clause?
(ROWDEPENDENCIES | NOROWDEPENDENCIES)?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -647,4 +647,26 @@ CREATE TABLE tab (ID number(9) primary key, data xmltype, data2 xmltype) MEMOPTI
CREATE TABLE tab (ID number(9) primary key, data xmltype, data2 xmltype) NO MEMOPTIMIZE FOR READ;
CREATE TABLE tab (ID number(9) primary key, data xmltype, data2 xmltype) MEMOPTIMIZE FOR WRITE;
CREATE TABLE tab (ID number(9) primary key, data xmltype, data2 xmltype) NO MEMOPTIMIZE FOR WRITE;
CREATE TABLE SCHEMA_B.TABLE_A (
C_DATE VARCHAR2(8) NOT NULL,
C_SN NUMBER NOT NULL

)
PARTITION BY RANGE ( C_DATE )
--INTERVAL ( numtoyminterval( 1, 'MONTH' ) )
(
PARTITION TABLE_A_202401 VALUES LESS THAN ('20240201'),
PARTITION TABLE_A_202402 VALUES LESS THAN ('20240301'),
PARTITION TABLE_A_202403 VALUES LESS THAN ('20240401'),
PARTITION TABLE_A_202404 VALUES LESS THAN ('20240501'),
PARTITION TABLE_A_202405 VALUES LESS THAN ('20240601'),
PARTITION TABLE_A_202406 VALUES LESS THAN ('20240701'),
PARTITION TABLE_A_202407 VALUES LESS THAN ('20240801'),
PARTITION TABLE_A_202408 VALUES LESS THAN ('20240901'),
PARTITION TABLE_A_202409 VALUES LESS THAN ('20241001'),
PARTITION TABLE_A_202410 VALUES LESS THAN ('20241101'),
PARTITION TABLE_A_202411 VALUES LESS THAN ('20241201'),
PARTITION TABLE_A_202412 VALUES LESS THAN ('20250101'),
PARTITION TABLE_A_202501 VALUES LESS THAN ('20250201')
) TABLESPACE TS_A;
CREATE OR REPLACE NONEDITIONABLE PACKAGE BODY tidy_html_snippet_pkg AS FUNCTION tidy(i_html_snippet IN CLOB) RETURN CLOB; FUNCTION tidy(i_html_snippet IN VARCHAR2) RETURN CLOB; END tidy_html_snippet_pkg;

0 comments on commit 978f4a6

Please sign in to comment.