Skip to content

Commit 1ea688d

Browse files
author
Cary Huang
committed
updaets
1 parent a6cb736 commit 1ea688d

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

docs/en/architecture/ddl_replication.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,23 @@ SynchDB provides comprehensive support for Data Definition Language (DDL) operat
99

1010
## **Supported DDL Commands**
1111

12-
SynchDB supports the following DDL operations:
12+
SynchDB supports the following general DDL operations for Debezium based connectors (MySQL, SQL Server, Oracle):
1313

1414
✅ CREATE [table]
1515
✅ ALTER [table] ADD COLUMN
1616
✅ ALTER [table] DROP COLUMN
1717
✅ ALTER [table] ALTER COLUMN
18-
✅ DROP [table]
18+
✅ DROP [table]
19+
20+
For Openlog Replicator based connector these Oracle DDL syntax is supported:
21+
22+
✅ CREATE [table]
23+
✅ DROP [table]
24+
✅ ALTER [table] MODIFY
25+
✅ ALTER [table] ADD COLUMN
26+
✅ ALTER [table] DROP COLUMN
27+
✅ ALTER [table] ADD CONSTRAINT
28+
✅ ALTER [table] DROP CONSTRAINT
1929

2030
## **Detailed Command Support**
2131

docs/zh/architecture/ddl_replication.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ SynchDB 支持以下 DDL 操作:
1717
✅ ALTER [table] ALTER COLUMN
1818
✅ DROP [table]
1919

20+
对于基于 Openlog Replicator 的连接器,支持以下 Oracle DDL 语法:
21+
22+
✅ CREATE [table]
23+
✅ DROP [table]
24+
✅ ALTER [table] MODIFY
25+
✅ ALTER [table] ADD COLUMN
26+
✅ ALTER [table] DROP COLUMN
27+
✅ ALTER [table] ADD CONSTRAINT
28+
✅ ALTER [table] DROP CONSTRAINT
29+
2030
## **详细命令支持**
2131

2232
### **CREATE TABLE**

0 commit comments

Comments
 (0)