Skip to content

Commit

Permalink
Fix last two test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Dec 24, 2024
1 parent 663694b commit e231989
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions internal/endtoend/testdata/join_right/mysql/go/models.go

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

6 changes: 3 additions & 3 deletions internal/endtoend/testdata/join_right/mysql/go/query.sql.go

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

4 changes: 2 additions & 2 deletions internal/endtoend/testdata/join_right/mysql/schema.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CREATE TABLE foo (id serial not null, bar_id int references bar(id));
CREATE TABLE bar (id serial not null);
CREATE TABLE foo (id integer not null, bar_id integer references bar(id));
CREATE TABLE bar (id integer not null);

4 changes: 2 additions & 2 deletions internal/endtoend/testdata/join_table_name/mysql/go/models.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.

4 changes: 2 additions & 2 deletions internal/endtoend/testdata/join_table_name/mysql/schema.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CREATE TABLE bar (id serial not null);
CREATE TABLE foo (id serial not null, bar integer references bar(id));
CREATE TABLE bar (id integer not null);
CREATE TABLE foo (id integer not null, bar integer references bar(id));

0 comments on commit e231989

Please sign in to comment.