Skip to content

Commit

Permalink
Reformatting single_shard_joins regress test
Browse files Browse the repository at this point in the history
  • Loading branch information
EinKrebs committed Apr 18, 2024
1 parent 40228cf commit 9249b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/regress/tests/router/expected/single_shard_joins.out
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ NOTICE: send query to shard(s) : sh2
12 | 13
(2 rows)

SELECT * FROM sshjt1 WHERE i = 12 AND j =1;
SELECT * FROM sshjt1 WHERE i = 12 AND j = 1;
NOTICE: send query to shard(s) : sh2
i | j
---+---
Expand Down
2 changes: 1 addition & 1 deletion test/regress/tests/router/sql/single_shard_joins.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ INSERT INTO sshjt1 (i, j) VALUES(12, 12);
INSERT INTO sshjt1 (i, j) VALUES(12, 13);

SELECT * FROM sshjt1 WHERE i = 12;
SELECT * FROM sshjt1 WHERE i = 12 AND j =1;
SELECT * FROM sshjt1 WHERE i = 12 AND j = 1;

SELECT * FROM sshjt1 a join sshjt1 b WHERE a.i = 12 ON TRUE;
SELECT * FROM sshjt1 a join sshjt1 b ON TRUE WHERE a.i = 12;
Expand Down

0 comments on commit 9249b67

Please sign in to comment.