Skip to content

Commit

Permalink
add more test case for Oracle CREATE TEMPORARY sql (#28997)
Browse files Browse the repository at this point in the history
  • Loading branch information
chakkk309 authored Nov 10, 2023
1 parent 186722b commit 2cb461c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
<create-tablespace sql-case-id="create_tablespace_with_temporary_extent_autoallocate" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_extent_uniform_size" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_extent_uniform" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_tempfile_spec" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_tempfile_spec_group" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_tempfile_spec_extent_management" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_tempfile_spec_size_autoextend" />
<create-tablespace sql-case-id="create_tablespace_with_temporary_tempfile_spec_size_autoextend_group" />
<create-tablespace sql-case-id="create_tablespace_with_undo_tablespace" />
<create-tablespace sql-case-id="create_tablespace_with_undo_tablespace_spec" />
<create-tablespace sql-case-id="create_tablespace_with_undo_tablespace_extent" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,11 @@
<sql-case id="create_tablespace_with_temporary_extent" value="CREATE TEMPORARY TABLESPACE test_space EXTENT MANAGEMENT LOCAL" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_extent_autoallocate" value="CREATE TEMPORARY TABLESPACE test_space EXTENT MANAGEMENT LOCAL AUTOALLOCATE" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_extent_uniform_size" value="CREATE TEMPORARY TABLESPACE test_space EXTENT MANAGEMENT LOCAL UNIFORM SIZE 5K" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_tempfile_spec" value="CREATE TEMPORARY TABLESPACE lmtemp TEMPFILE '/u02/oracle/data/lmtemp01.dbf' SIZE 20M REUSE EXTENT MANAGEMENT LOCAL UNIFORM SIZE 16M;" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_tempfile_spec_group" value="CREATE TEMPORARY TABLESPACE lmtemp3 TEMPFILE '/u02/oracle/data/lmtemp301.dbf'SIZE 25M TABLESPACE GROUP group1;" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_tempfile_spec_extent_management" value="CREATE TEMPORARY TABLESPACE tbs_t1 TEMPFILE 'tbs_t1.f' SIZE 50m REUSE AUTOEXTEND ON MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64K;" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_tempfile_spec_size_autoextend" value="CREATE TEMPORARY TABLESPACE temp_demo TEMPFILE 'temp01.dbf' SIZE 5M AUTOEXTEND ON;" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_tempfile_spec_size_autoextend_group" value="CREATE TEMPORARY TABLESPACE tbs_temp_02 TEMPFILE 'temp02.dbf' SIZE 5M AUTOEXTEND ON TABLESPACE GROUP tbs_grp_01;" db-types="Oracle" />
<sql-case id="create_tablespace_with_temporary_extent_uniform" value="CREATE TEMPORARY TABLESPACE test_space EXTENT MANAGEMENT LOCAL UNIFORM" db-types="Oracle" />
<sql-case id="create_tablespace_with_undo_tablespace" value="CREATE UNDO TABLESPACE tablespaceName" db-types="Oracle" />
<sql-case id="create_tablespace_with_undo_tablespace_spec" value="CREATE UNDO TABLESPACE tablespaceName DATATFILE file_specification" db-types="Oracle" />
Expand Down

0 comments on commit 2cb461c

Please sign in to comment.