-
Notifications
You must be signed in to change notification settings - Fork 34
fix: strip schema qualifiers from custom types in RETURNS TABLE (#360) #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
cb22b1f
fix: strip schema qualifiers from custom types in RETURNS TABLE (#360)
tianzhou d99967c
fix: use parenthesis-aware splitting for TABLE column types
tianzhou b405736
fix: handle quoted column identifiers in TABLE return types
tianzhou 8d3718a
fix: respect quoted identifiers in splitTableColumns
tianzhou 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
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
30 changes: 30 additions & 0 deletions
30
testdata/diff/create_function/issue_360_returns_table_custom_type/new.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| CREATE TYPE datetimeoffset AS (local_time timestamp without time zone, offset_minutes smallint); | ||
|
|
||
| CREATE TABLE account_groups ( | ||
| id uuid NOT NULL, | ||
| company_id uuid NOT NULL, | ||
| name varchar NOT NULL, | ||
| created_at datetimeoffset NOT NULL, | ||
| updated_at datetimeoffset NOT NULL | ||
| ); | ||
|
|
||
| CREATE OR REPLACE FUNCTION get_account_group_by_id( | ||
| p_group_id uuid | ||
| ) | ||
| RETURNS TABLE(id uuid, company_id uuid, name varchar, created_at datetimeoffset, updated_at datetimeoffset) | ||
| LANGUAGE plpgsql | ||
| VOLATILE | ||
| SECURITY DEFINER | ||
| AS $$ | ||
| BEGIN | ||
| RETURN QUERY | ||
| SELECT | ||
| ag.id, | ||
| ag.company_id, | ||
| ag.name, | ||
| ag.created_at, | ||
| ag.updated_at | ||
| FROM account_groups ag | ||
| WHERE ag.id = p_group_id; | ||
| END; | ||
| $$; |
30 changes: 30 additions & 0 deletions
30
testdata/diff/create_function/issue_360_returns_table_custom_type/old.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| CREATE TYPE datetimeoffset AS (local_time timestamp without time zone, offset_minutes smallint); | ||
|
|
||
| CREATE TABLE account_groups ( | ||
| id uuid NOT NULL, | ||
| company_id uuid NOT NULL, | ||
| name varchar NOT NULL, | ||
| created_at datetimeoffset NOT NULL, | ||
| updated_at datetimeoffset NOT NULL | ||
| ); | ||
|
|
||
| CREATE OR REPLACE FUNCTION get_account_group_by_id( | ||
| p_group_id uuid | ||
| ) | ||
| RETURNS TABLE(id uuid, company_id uuid, name varchar, created_at datetimeoffset, updated_at datetimeoffset) | ||
| LANGUAGE plpgsql | ||
| VOLATILE | ||
| SECURITY DEFINER | ||
| AS $$ | ||
| BEGIN | ||
| RETURN QUERY | ||
| SELECT | ||
| ag.id, | ||
| ag.company_id, | ||
| ag.name, | ||
| ag.created_at, | ||
| ag.updated_at | ||
| FROM account_groups ag | ||
| WHERE ag.id = p_group_id; | ||
| END; | ||
| $$; | ||
tianzhou marked this conversation as resolved.
Show resolved
Hide resolved
|
||
9 changes: 9 additions & 0 deletions
9
testdata/diff/create_function/issue_360_returns_table_custom_type/plan.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "version": "1.0.0", | ||
| "pgschema_version": "1.7.4", | ||
| "created_at": "1970-01-01T00:00:00Z", | ||
| "source_fingerprint": { | ||
| "hash": "bc4fc478f2d7ae4cc204de3447d992dface8f485a9227504fed99b21817cb888" | ||
| }, | ||
| "groups": null | ||
| } |
Empty file.
1 change: 1 addition & 0 deletions
1
testdata/diff/create_function/issue_360_returns_table_custom_type/plan.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| No changes detected. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.