mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-21 05:57:05 +00:00
87f62c8910
License-Update: Update license year to 2026 Refreshed patches for version 17.8 Includes fix for CVE-2026-2003, CVE-2026-2004, CVE-2026-2005, CVE-2026-2006 Release Notes: https://www.postgresql.org/docs/release/17.8/ Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
47 lines
1.8 KiB
Diff
47 lines
1.8 KiB
Diff
From 220b65291734b81a3c232877cf5fced20fe773e3 Mon Sep 17 00:00:00 2001
|
|
From: Manoj Saun <manojsingh.saun@windriver.com>
|
|
Date: Wed, 22 Mar 2023 08:07:26 +0000
|
|
Subject: [PATCH] postgresql: fix ptest failure of sysviews
|
|
|
|
The patch "0001-config_info.c-not-expose-build-info.patch" hides the debug info
|
|
in pg_config table which reduces the count of rows from pg_config and leads to
|
|
sysviews test failure.
|
|
To fix it we need to reduce the count of parameters in sysviews test.
|
|
Also we need to reduce the row count in expected result of sysview test
|
|
to make the test output shown as pass.
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
|
|
Signed-off-by: Manoj Saun <manojsingh.saun@windriver.com>
|
|
---
|
|
src/test/regress/expected/sysviews.out | 2 +-
|
|
src/test/regress/sql/sysviews.sql | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/test/regress/expected/sysviews.out b/src/test/regress/expected/sysviews.out
|
|
index 2176a54..a84bc27 100644
|
|
--- a/src/test/regress/expected/sysviews.out
|
|
+++ b/src/test/regress/expected/sysviews.out
|
|
@@ -52,7 +52,7 @@ from pg_backend_memory_contexts where name = 'Caller tuples';
|
|
|
|
rollback;
|
|
-- At introduction, pg_config had 23 entries; it may grow
|
|
-select count(*) > 20 as ok from pg_config;
|
|
+select count(*) > 13 as ok from pg_config;
|
|
ok
|
|
----
|
|
t
|
|
diff --git a/src/test/regress/sql/sysviews.sql b/src/test/regress/sql/sysviews.sql
|
|
index b047fb5..d1e3999 100644
|
|
--- a/src/test/regress/sql/sysviews.sql
|
|
+++ b/src/test/regress/sql/sysviews.sql
|
|
@@ -33,7 +33,7 @@ from pg_backend_memory_contexts where name = 'Caller tuples';
|
|
rollback;
|
|
|
|
-- At introduction, pg_config had 23 entries; it may grow
|
|
-select count(*) > 20 as ok from pg_config;
|
|
+select count(*) > 13 as ok from pg_config;
|
|
|
|
-- We expect no cursors in this test; see also portals.sql
|
|
select count(*) = 0 as ok from pg_cursors;
|