We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52202bb commit fa74469Copy full SHA for fa74469
src/bin/pg_upgrade/test.sh
@@ -177,7 +177,12 @@ if "$MAKE" -C "$oldsrc" installcheck-parallel; then
177
esac
178
fix_sql="$fix_sql
179
DROP FUNCTION IF EXISTS
180
- public.oldstyle_length(integer, text); -- last in 9.6";
+ public.oldstyle_length(integer, text); -- last in 9.6
181
+ DROP OPERATOR IF EXISTS -- last in v13
182
+ public.#@# (pg_catalog.int8, NONE),
183
+ public.#%# (pg_catalog.int8, NONE),
184
+ public.!=- (pg_catalog.int8, NONE),
185
+ public.#@%# (pg_catalog.int8, NONE);"
186
psql -X -d regression -c "$fix_sql;" || psql_fix_sql_status=$?
187
fi
188
0 commit comments