Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL parsing Enhancement: add more test case for Oracle CREATE TEMPORARY TABLESPACE sql #28997

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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