Skip to content

Commit ff3e694

Browse files
committed
fix(pg_graphql): use string comparison for pgVersion
pgVersion is a string, so comparison should be string-to-string instead of string-to-integer.
1 parent d470079 commit ff3e694

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nix/ext/pg_graphql/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ let
164164
_: value: !builtins.elem pgVersion value.postgresql
165165
) allVersions;
166166
unsupportedPackages =
167-
if pgVersion == 15 then
167+
if pgVersion == "15" then
168168
[ ]
169169
else
170170
# Include SQL-only packages for PG15 extension versions incompatible with current PG

0 commit comments

Comments
 (0)