Skip to content
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

fix(typescript): function only have union over args #914

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

avallete
Copy link
Member

What kind of change does this PR introduce?

  • A function definition in postgresql can be declared multiples times with differents arguments. But it's return type must be the same across all definition. Therefore, the generated types should match that. This turn multiples definitions like so:
get_todos_setof_rows: { Args: { ... }, Returns: { ... }  } | { Args: { ... }, Returns: { ... }  }

Into the more correct:

get_todos_setof_rows: { Args: { ... } | { ... }, Returns: { ... }  }

This also will fix on the type inference side the return type for rpc functions calls from an union of object, to a single object.

@avallete avallete requested review from a team as code owners March 30, 2025 10:58
Comment on lines +163 to +183
CREATE OR REPLACE FUNCTION public.get_user_audit_setof_single_row(user_row users)
RETURNS SETOF users_audit
LANGUAGE SQL STABLE
ROWS 1
AS $$
SELECT * FROM public.users_audit WHERE user_id = user_row.id;
$$;

CREATE OR REPLACE FUNCTION public.get_todos_setof_rows(user_row users)
RETURNS SETOF todos
LANGUAGE SQL STABLE
AS $$
SELECT * FROM public.todos WHERE "user-id" = user_row.id;
$$;

CREATE OR REPLACE FUNCTION public.get_todos_setof_rows(todo_row todos)
RETURNS SETOF todos
LANGUAGE SQL STABLE
AS $$
SELECT * FROM public.todos WHERE "user-id" = todo_row."user-id";
$$;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

Those will also be used to improve the introspection to provide automatic types inferences for embeded functions select joins in follow-up PR's.

Comment on lines +281 to +282
Args: ${fns
.map(({ args }) => {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

The loop is now at the Args level to unionize.

Comment on lines +301 to +318
Returns: ${(() => {
// Case 1: `returns table`.
const tableArgs = fns[0].args.filter(({ mode }) => mode === 'table')
if (tableArgs.length > 0) {
const argsNameAndType = tableArgs.map(({ name, type_id }) => {
const type = types.find(({ id }) => id === type_id)
let tsType = 'unknown'
if (type) {
tsType = pgTypeToTsType(type.name, { types, schemas, tables, views })
}
return { name, type: tsType }
})

return `{
${argsNameAndType.map(
({ name, type }) => `${JSON.stringify(name)}: ${type}`
)}
}`
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note

Single Returns using the first element within the fns array as source of truth.

@avallete avallete requested a review from soedirgo March 30, 2025 11:01
@avallete avallete merged commit 005b61f into master Mar 31, 2025
5 checks passed
@avallete avallete deleted the fix/functions-typescript-type-definition branch March 31, 2025 17:25
@coveralls
Copy link

Pull Request Test Coverage Report for Build 14155356078

Details

  • 53 of 54 (98.15%) changed or added relevant lines in 1 file are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.05%) to 75.902%

Changes Missing Coverage Covered Lines Changed/Added Lines %
src/server/templates/typescript.ts 53 54 98.15%
Totals Coverage Status
Change from base Build 14116030070: -0.05%
Covered Lines: 4979
Relevant Lines: 6478

💛 - Coveralls

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants