mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-13 17:39:57 +00:00
4aeca7b2b3
This is a minor release to address CVEs and other bug fixes without new features. Remove patches that are fixed in this release. Release notes are available at: https://www.postgresql.org/docs/release/14.6/ https://www.postgresql.org/docs/release/14.7/ https://www.postgresql.org/docs/release/14.8/ https://www.postgresql.org/docs/release/14.9/ License-Update: Copyright year updated Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> [Fixup patch fuzzy] Signed-off-by: Armin Kuster <akuster808@gmail.com>
48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
From 5a17b7b88776cbbe5b37838baff71726b8a6e7dd 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 2088857..96a15cc 100644
|
|
--- a/src/test/regress/expected/sysviews.out
|
|
+++ b/src/test/regress/expected/sysviews.out
|
|
@@ -29,7 +29,7 @@ select name, ident, parent, level, total_bytes >= free_bytes
|
|
(1 row)
|
|
|
|
-- 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 b24816e..72ff887 100644
|
|
--- a/src/test/regress/sql/sysviews.sql
|
|
+++ b/src/test/regress/sql/sysviews.sql
|
|
@@ -18,7 +18,7 @@ select name, ident, parent, level, total_bytes >= free_bytes
|
|
from pg_backend_memory_contexts where level = 0;
|
|
|
|
-- 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;
|