|
|
vor 2 Jahren | |
|---|---|---|
| .. | ||
| META-INF | vor 2 Jahren | |
| io | vor 2 Jahren | |
| saga | vor 2 Jahren | |
| AppTest.class | vor 2 Jahren | |
| LocalTransactionWithGlobalLockDataSourceBasicTest.class | vor 2 Jahren | |
| README.md | vor 2 Jahren | |
| basic-test-context.xml | vor 2 Jahren | |
| biz.sql | vor 2 Jahren | |
| file.conf | vor 2 Jahren | |
| logback.xml | vor 2 Jahren | |
| registry.conf | vor 2 Jahren | |
##测试表结构
CREATE TABLE t (
id int NOT NULL,
a int DEFAULT NULL,
c int DEFAULT NULL,
PRIMARY KEY (id),
KEY a (a)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE t1 (
id int NOT NULL,
a int DEFAULT NULL,
b int DEFAULT NULL,
c int DEFAULT NULL,
PRIMARY KEY (id),
KEY a (a)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
###测试数据
insert into t(id,a,c) values(1,1,1);\
insert into t1(id,a,b,c) values(2,1,2,2)