Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: sql query
Browse files Browse the repository at this point in the history
Signed-off-by: Prakhar Gurunani <[email protected]>
FirePing32 committed Nov 5, 2023
1 parent 87b1d5b commit c5c1b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/vt/vtgate/planbuilder/operators/insert_test.go
Original file line number Diff line number Diff line change
@@ -29,8 +29,8 @@ import (

func TestModifyForAutoinc(t *testing.T) {
var testCases []string = []string{
"INSERT INTO seqtest (customer_id, order_date, total_amount, string) VALUES (11, '2023-09-02', 200.00);",
"INSERT INTO seqtest (customer_id, order_date, total_amount) VALUES (11, '2023-09-02', 200.00, 'test);",
"insert into test (customer_id, order_date, total_amount, string) values (11, '2023-09-02', 200.00);",
"insert into test (customer_id, order_date, total_amount) values (11, '2023-09-02', 200.00, 'test');",
}
for _, tc := range testCases {
t.Run(tc, func(t *testing.T) {

0 comments on commit c5c1b0d

Please sign in to comment.