Skip to content

Commit

Permalink
endtoend: Add MySQL test for SELECT * JOIN (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Jun 23, 2020
1 parent 554eaa9 commit 456fcb1
Show file tree
Hide file tree
Showing 10 changed files with 112 additions and 0 deletions.
@@ -0,0 +1,5 @@
CREATE TABLE foo (a text, b text);
CREATE TABLE bar (c text, d text);

/* name: StarExpansionJoin :many */
SELECT * FROM foo, bar;
Expand Up @@ -2,6 +2,7 @@
"version": "1",
"packages": [
{
"engine": "_dolphin",
"path": "go",
"name": "querytest",
"schema": "query.sql",
Expand Down
29 changes: 29 additions & 0 deletions internal/endtoend/testdata/star_expansion_join/postgresql/go/db.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

@@ -0,0 +1,12 @@
{
"version": "1",
"packages": [
{
"engine": "postgresql",
"path": "go",
"name": "querytest",
"schema": "query.sql",
"queries": "query.sql"
}
]
}

0 comments on commit 456fcb1

Please sign in to comment.