Skip to content

Commit 415eb76

Browse files
committed
chore: cleanup search_path on increment_schema_version
1 parent 08f725b commit 415eb76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pg_graphql"
3-
version = "1.5.9"
3+
version = "1.5.10"
44
edition = "2021"
55

66
[lib]

sql/schema_version.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ create or replace function graphql.increment_schema_version()
77
language plpgsql
88
as $$
99
begin
10-
perform nextval('graphql.seq_schema_version');
10+
perform pg_catalog.nextval('graphql.seq_schema_version');
1111
end;
1212
$$;
1313

0 commit comments

Comments
 (0)