Skip to content

Commit

Permalink
Merge pull request #577 from supabase/etienne/sec-205-pg_graphql-sear…
Browse files Browse the repository at this point in the history
…ch-path

chore: cleanup search_path on increment_schema_version
  • Loading branch information
olirice authored Feb 20, 2025
2 parents 08f725b + 415eb76 commit 4673e57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_graphql"
version = "1.5.9"
version = "1.5.10"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion sql/schema_version.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ create or replace function graphql.increment_schema_version()
language plpgsql
as $$
begin
perform nextval('graphql.seq_schema_version');
perform pg_catalog.nextval('graphql.seq_schema_version');
end;
$$;

Expand Down

0 comments on commit 4673e57

Please sign in to comment.