You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/db-browser/src/main/java/com/oceanbase/tools/dbbrowser/editor/oracle/OracleDBTablePartitionEditor.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -120,9 +120,9 @@ public String generateAddPartitionDefinitionDDL(String schemaName, @NonNull Stri
Copy file name to clipboardExpand all lines: libs/db-browser/src/test/resources/table/operator/ob/mysql/partition/update_multi_partition_test_cases.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
]
30
30
}
31
31
},
32
-
"output": "ALTER TABLE schema.table ADD PARTITION (\n\tPARTITION `p1` VALUES LESS THAN (1000),\n\tPARTITION `p2` VALUES LESS THAN (2000));\n"
32
+
"output": "ALTER TABLE `schema`.`table` ADD PARTITION (\n\tPARTITION `p1` VALUES LESS THAN (1000),\n\tPARTITION `p2` VALUES LESS THAN (2000));\n"
Copy file name to clipboardExpand all lines: libs/db-browser/src/test/resources/table/operator/ob/oracle/partition/delete_multi_partition_test_cases.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,6 @@
29
29
]
30
30
}
31
31
},
32
-
"output": "ALTER TABLE schema.table DROP PARTITION (\"p1\", \"p2\");\n"
32
+
"output": "ALTER TABLE \"schema\".\"table\" DROP PARTITION (\"p1\", \"p2\");\n"
Copy file name to clipboardExpand all lines: libs/db-browser/src/test/resources/table/operator/ob/oracle/partition/update_multi_partition_test_cases.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
]
30
30
}
31
31
},
32
-
"output": "ALTER TABLE schema.table ADD \n\tPARTITION \"p1\" VALUES LESS THAN (1000),\n\tPARTITION \"p2\" VALUES LESS THAN (2000);\n"
32
+
"output": "ALTER TABLE \"schema\".\"table\" ADD \n\tPARTITION \"p1\" VALUES LESS THAN (1000),\n\tPARTITION \"p2\" VALUES LESS THAN (2000);\n"
Copy file name to clipboardExpand all lines: server/integration-test/src/test/java/com/oceanbase/odc/service/partitionplan/PartitionPlanServiceTest.java
+19-18Lines changed: 19 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ public void generatePartitionDdl_mysqlOnlyCreate_generateSucceed() throws Except
Copy file name to clipboardExpand all lines: server/plugins/task-plugin-ob-mysql/src/test/java/com/oceanbase/odc/plugin/task/obmysql/partitionplan/OBMySQLAutoPartitionExtensionPointTest.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ public void generateCreatePartitionDdls_normal_succeed() throws Exception {
Copy file name to clipboardExpand all lines: server/plugins/task-plugin-ob-oracle/src/test/java/com/oceanbase/odc/plugin/task/oboracle/partitionplan/OBOracleAutoPartitionExtensionPointTest.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ public void generateCreatePartitionDdls_normal_succeed() throws Exception {
0 commit comments