Skip to content

Commit

Permalink
reproduce oracle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GOODBOY008 committed Jul 8, 2023
1 parent cf05c78 commit 19dd3c1
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,17 @@ INSERT INTO DEBEZIUM.CUSTOMERS VALUES (1019,'user_20','Shanghai','123567891234')
INSERT INTO DEBEZIUM.CUSTOMERS VALUES (2000,'user_21','Shanghai','123567891234');

-- table has same name prefix with 'customers.*'
CREATE TABLE DEBEZIUM.CUSTOMERS_1 (
create TABLE DEBEZIUM.CUSTOMERS_1 (
ID INT NOT NULL,
NAME VARCHAR2(255) NOT NULL,
ADDRESS VARCHAR2(1024),
PHONE_NUMBER VARCHAR2(512),
PRIMARY KEY(ID)
)
PARTITION BY RANGE (ID) (
PARTITION P1 VALUES LESS THAN (200),
PARTITION P2 VALUES LESS THAN (1500),
PARTITION P3 VALUES LESS THAN (3000)
);

INSERT INTO DEBEZIUM.CUSTOMERS_1 VALUES (101,'user_1','Shanghai','123567891234');
Expand Down

0 comments on commit 19dd3c1

Please sign in to comment.