We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5a2380 commit 279e434Copy full SHA for 279e434
1 file changed
scripts/post_init.sh
@@ -4,6 +4,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")" || exit 1
4
5
PGVER=$(psql -d "$2" -XtAc "SELECT pg_catalog.current_setting('server_version_num')::int/10000")
6
if [ "$PGVER" -ge 12 ]; then RESET_ARGS="oid, oid, bigint"; fi
7
+if [ "$PGVER" -ge 17 ]; then RESET_ARGS="oid, oid, bigint, boolean"; fi
8
9
(
10
cat - <<SQL
0 commit comments