-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[shanyujie]rename unit test function name, use standalone sql for Tes…
…t_OrderBy_Statement_Generated
- Loading branch information
shanyujie
committed
Sep 25, 2024
1 parent
34231b3
commit fc90cdd
Showing
2 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
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
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 IF NOT EXISTS `employee` | ||
( | ||
id BIGINT AUTO_INCREMENT PRIMARY KEY, | ||
name VARCHAR(255) NOT NULL, | ||
age INT NOT NULL | ||
); | ||
|
||
INSERT INTO employee(name, age) VALUES ('John', 30); | ||
INSERT INTO employee(name, age) VALUES ('Mary', 28); |