Skip to content

Commit

Permalink
✅ Update weird failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
julien040 committed Oct 19, 2024
1 parent e263e2f commit 1311a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion namespace/namespace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func TestNamespace(t *testing.T) {
require.NoError(t, err, "The connection should be registered")

// Run a simple query
rows, err := db.Query("SELECT A.id, A.name, B.id, B.name FROM test A, test2 B")
rows, err := db.Query("SELECT A.id, A.name FROM test A UNION ALL SELECT B.id, B.name FROM test2 B")
require.NoError(t, err, "The query should work")

// Each table return 2 rows so we should have 4 rows (cartesian product)
Expand Down

0 comments on commit 1311a60

Please sign in to comment.