Skip to content

Commit

Permalink
undo test changes
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <[email protected]>
  • Loading branch information
systay committed Jun 27, 2024
1 parent bb00469 commit 9aa70a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go/vt/vtexplain/testdata/twopc-output/unsharded-output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ select * from t1
insert into t1 (id,intval,floatval) values (1,2,3.14)

1 ks_unsharded/-: begin
1 ks_unsharded/-: insert into t1(id, intval, floatval) values (1, 2, cast(3.14 as DECIMAL(3, 2)))
1 ks_unsharded/-: insert into t1(id, intval, floatval) values (1, 2, 3.14)
2 ks_unsharded/-: commit

----------------------------------------------------------------------
Expand Down Expand Up @@ -42,7 +42,7 @@ delete from t1 where id = 100
insert into t1 (id,intval,floatval) values (1,2,3.14) on duplicate key update intval=3, floatval=3.14

1 ks_unsharded/-: begin
1 ks_unsharded/-: insert into t1(id, intval, floatval) values (1, 2, cast(3.14 as DECIMAL(3, 2))) on duplicate key update intval = 3, floatval = cast(3.14 as DECIMAL(3, 2))
1 ks_unsharded/-: insert into t1(id, intval, floatval) values (1, 2, 3.14) on duplicate key update intval = 3, floatval = 3.14
2 ks_unsharded/-: commit

----------------------------------------------------------------------
----------------------------------------------------------------------

0 comments on commit 9aa70a5

Please sign in to comment.