Skip to content

Commit 4c23e73

Browse files
[PlSql] Add Shrink Clause to the Modify Table Partition (#3893)
1 parent f083ee2 commit 4c23e73

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sql/plsql/PlSqlParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4744,7 +4744,7 @@ modify_table_partition
47444744
: MODIFY (
47454745
PARTITION partition_name ((ADD | DROP) list_values_clause)? (ADD range_subpartition_desc)? (
47464746
REBUILD? UNUSABLE LOCAL INDEXES
4747-
)?
4747+
)? shrink_clause?
47484748
| range_partitions
47494749
)
47504750
;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tft_tsm.t_act_trade_detail MODIFY PARTITION SYS_P41089 SHRINK SPACE;

0 commit comments

Comments
 (0)