Skip to content

Commit 89d008f

Browse files
gfphoenix78hanwei
authored andcommitted
Add answer file for high version perl
Perl with higher version(e.g. 5.38.0) will produce different error message, compared with v5.34.0 We should handle these different versions.
1 parent e766944 commit 89d008f

File tree

11 files changed

+804
-13
lines changed

11 files changed

+804
-13
lines changed

contrib/pax_storage/src/api/python3/setup-debug.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def abs_path(file_name):
5151
version = '1.0',
5252
description = 'PAXPY is the PYTHON3 API of PAX',
5353
author = 'jiaqizho',
54-
author_email = 'jiaqizho@hashdata.cn',
54+
author_email = 'jiaqizho@apache.org',
5555
url = '-',
5656
ext_modules = [paxpy_module]
57-
)
57+
)

contrib/pax_storage/src/api/python3/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def abs_path(file_name):
4848
version = '1.0',
4949
description = 'PAXPY is the PYTHON3 API of PAX',
5050
author = 'jiaqizho',
51-
author_email = 'jiaqizho@hashdata.cn',
51+
author_email = 'jiaqizho@apache.org',
5252
url = '-',
5353
ext_modules = [paxpy_module]
54-
)
54+
)

contrib/pax_storage/src/cpp/catalog/manifest_api.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#pragma once
2929

3030
/*
31-
* abstract interface of hashdata manifest
31+
* abstract interface of manifest
3232
*/
3333

3434
#ifdef __cplusplus
@@ -42,7 +42,7 @@ extern "C" {
4242
* memory management.
4343
*/
4444

45-
/* hashdata manifest support following data types for fields */
45+
/* manifest support following data types for fields */
4646
typedef enum MetaFieldType
4747
{
4848
Meta_Field_Type_Int = 1,

contrib/pax_storage/src/test/regress/expected/create_index.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2690,7 +2690,6 @@ COMMIT;
26902690
-- we keep the `CONCURRENTLY` to make the following commands fail,
26912691
-- so these commands will not cause deadlock with test create_view,
26922692
-- like `drop schema xxx cascade;`.
2693-
-- See more details at https://code.hashdata.xyz/cloudberry/cbdb/-/issues/54
26942693
REINDEX TABLE CONCURRENTLY pg_class; -- no catalog relation
26952694
ERROR: cannot reindex system catalogs concurrently
26962695
REINDEX INDEX CONCURRENTLY pg_class_oid_index; -- no catalog index

contrib/pax_storage/src/test/regress/expected/create_index_optimizer.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2717,7 +2717,6 @@ COMMIT;
27172717
-- we keep the `CONCURRENTLY` to make the following commands fail,
27182718
-- so these commands will not cause deadlock with test create_view,
27192719
-- like `drop schema xxx cascade;`.
2720-
-- See more details at https://code.hashdata.xyz/cloudberry/cbdb/-/issues/54
27212720
REINDEX TABLE CONCURRENTLY pg_class; -- no catalog relation
27222721
ERROR: cannot reindex system catalogs concurrently
27232722
REINDEX INDEX CONCURRENTLY pg_class_oid_index; -- no catalog index

contrib/pax_storage/src/test/regress/sql/create_index.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,6 @@ COMMIT;
11111111
-- we keep the `CONCURRENTLY` to make the following commands fail,
11121112
-- so these commands will not cause deadlock with test create_view,
11131113
-- like `drop schema xxx cascade;`.
1114-
-- See more details at https://code.hashdata.xyz/cloudberry/cbdb/-/issues/54
11151114
REINDEX TABLE CONCURRENTLY pg_class; -- no catalog relation
11161115
REINDEX INDEX CONCURRENTLY pg_class_oid_index; -- no catalog index
11171116
-- These are the toast table and index of pg_authid.

0 commit comments

Comments
 (0)