Skip to content

Commit af3908c

Browse files
committed
test case
1 parent ca188a2 commit af3908c

File tree

2 files changed

+5
-73
lines changed

2 files changed

+5
-73
lines changed

src/test/java/org/apache/ibatis/autoconstructor/CreateDB.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ CREATE TABLE subject (
2626
age INT NOT NULL,
2727
height INT,
2828
weight INT,
29-
width INT,
3029
active BIT,
31-
dt TIMESTAMP
30+
dt TIMESTAMP,
31+
width INT
3232
);
3333

3434
CREATE TABLE extensive_subject (
@@ -48,9 +48,9 @@ CREATE TABLE extensive_subject (
4848
);
4949

5050
INSERT INTO subject VALUES
51-
(1, 'a', 10, 100, 45, 50, 1, CURRENT_TIMESTAMP),
52-
(2, 'b', 10, NULL, 45, 50, 1, CURRENT_TIMESTAMP),
53-
(2, 'c', 10, NULL, NULL,Null, 0, CURRENT_TIMESTAMP);
51+
(1, 'a', 10, 100, 45, 1, CURRENT_TIMESTAMP, 50),
52+
(2, 'b', 10, NULL, 45, 1, CURRENT_TIMESTAMP, 50),
53+
(2, 'c', 10, NULL, NULL, 0, CURRENT_TIMESTAMP, 50);
5454

5555
INSERT INTO extensive_subject
5656
VALUES

src/test/java/org/apache/ibatis/type/CostomLongTypeHandlerTest.java

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)