From ff3b514276096717df956d512a623bbfea94980d Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Thu, 7 Nov 2024 09:46:16 +0000 Subject: [PATCH] normalize.sed update --- src/test/regress/bin/normalize.sed | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/test/regress/bin/normalize.sed b/src/test/regress/bin/normalize.sed index 80c8e6aa3..643a3be58 100644 --- a/src/test/regress/bin/normalize.sed +++ b/src/test/regress/bin/normalize.sed @@ -310,4 +310,11 @@ s/permission denied to cancel query/must be a superuser to cancel superuser quer #endif /* PG_VERSION_NUM < PG_VERSION_16 */ -s/DEBUG: drop auto-cascades to type public\.pg_temp_[0-9]\+/DEBUG: drop auto-cascades to type public.pg_temp_xxxxx/g \ No newline at end of file +# pg17 changes +# can be removed when dropping PG16 support +#if PG_VERSION_NUM >= PG_VERSION_17 + +# multi_mx_router_planner normalize public.pg_temp_xxxxx +s/DEBUG: drop auto-cascades to type public\.pg_temp_[0-9]+/DEBUG: drop auto-cascades to type public.pg_temp_xxxxx/g + +#endif /* PG_VERSION_NUM >= PG_VERSION_17 */ \ No newline at end of file