aboutsummaryrefslogtreecommitdiffstats
path: root/main/postgresql/postgresql-contrib.post-upgrade
blob: 34d688ead9d4f90882f54d51c88c4a61fbe971f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

ver_new="$1"
ver_old="$2"

if [ "$(apk version -t "$ver_old" "9.6.7-r0")" = "<" ]; then
	cat >&2 <<-EOF
	*
	* If you use contrib/cube's cube ~> int operator, you have to reindex/refresh
	* all expression indexes and materialized views using this operator.
	* Read https://www.postgresql.org/docs/10/static/release-9-6-7.html.
	*
	EOF
fi

exit 0