Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update test query.sql to have conditions on altered columns
  • Loading branch information
dbhoot committed Apr 25, 2024
commit 0fa722099ff8b7aa983a36c2c62d6b28eeee4e0f

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ SELECT * FROM person;

-- name: GetAllOrganisations :many
SELECT * FROM organisation;

-- name: GetOrganizationsByRegion :many
SELECT *
FROM organisation
WHERE
region = 'us' AND
rank = 'ensign';

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ SELECT * FROM person;

-- name: GetAllOrganisations :many
SELECT * FROM organisation;

-- name: GetOrganizationsByRegion :many
SELECT *
FROM organisation
WHERE
region = 'us' AND
rank = 'ensign';

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ SELECT * FROM person;

-- name: GetAllOrganisations :many
SELECT * FROM organisation;

-- name: GetOrganizationsByRegion :many
SELECT *
FROM organisation
WHERE
region = 'us' AND
rank = 'ensign';