forked from GreptimeTeam/greptimedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add integration test for issue2437 (GreptimeTeam#2481)
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
tests/cases/standalone/common/alter/add_incorrect_col.result
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
CREATE TABLE table_should_not_break_after_incorrect_alter(i INTEGER, j TIMESTAMP TIME INDEX); | ||
|
||
Affected Rows: 0 | ||
|
||
ALTER TABLE table_should_not_break_after_incorrect_alter ADD column k string NOT NULL; | ||
|
||
Error: 1004(InvalidArguments), Invalid alter table(table_should_not_break_after_incorrect_alter) request: no default value for column k | ||
|
||
INSERT INTO table_should_not_break_after_incorrect_alter VALUES (1, 1), (2, 2); | ||
|
||
Affected Rows: 2 | ||
|
||
SELECT * FROM table_should_not_break_after_incorrect_alter; | ||
|
||
+---+-------------------------+ | ||
| i | j | | ||
+---+-------------------------+ | ||
| 1 | 1970-01-01T00:00:00.001 | | ||
| 2 | 1970-01-01T00:00:00.002 | | ||
+---+-------------------------+ | ||
|
||
DROP TABLE table_should_not_break_after_incorrect_alter; | ||
|
||
Affected Rows: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE table_should_not_break_after_incorrect_alter(i INTEGER, j TIMESTAMP TIME INDEX); | ||
|
||
ALTER TABLE table_should_not_break_after_incorrect_alter ADD column k string NOT NULL; | ||
|
||
INSERT INTO table_should_not_break_after_incorrect_alter VALUES (1, 1), (2, 2); | ||
|
||
SELECT * FROM table_should_not_break_after_incorrect_alter; | ||
|
||
DROP TABLE table_should_not_break_after_incorrect_alter; |