Skip to content

Commit 4c26586

Browse files
authored
Merge branch 'apache:main' into main
2 parents cc7ebac + 017b06b commit 4c26586

File tree

27 files changed

+972
-33
lines changed

27 files changed

+972
-33
lines changed

.asf.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,18 @@ github:
122122
# Require conversation threads to be resolved
123123
required_conversation_resolution: true
124124

125+
# Branch protection for REL_2_STABLE release branch
126+
REL_2_STABLE:
127+
# Pull request review requirements
128+
required_pull_request_reviews:
129+
# Require new reviews when new commits are pushed
130+
dismiss_stale_reviews: false
131+
# Require at least 2 approving reviews
132+
required_approving_review_count: 2
133+
134+
# Require conversation threads to be resolved
135+
required_conversation_resolution: true
136+
125137
# Branch cleanup settings
126138
# Don't automatically delete branches after merging
127139
del_branch_on_merge: true

.github/workflows/apache-rat-audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ name: Apache Rat License Check
3232

3333
on:
3434
push:
35-
branches: [main]
35+
branches: [main, REL_2_STABLE]
3636
pull_request:
37-
branches: [main]
37+
branches: [main, REL_2_STABLE]
3838
types: [opened, synchronize, reopened, edited]
3939
workflow_dispatch:
4040

.github/workflows/build-cloudberry.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ name: Apache Cloudberry Build
102102

103103
on:
104104
push:
105-
branches: [main]
105+
branches: [main, REL_2_STABLE]
106106
pull_request:
107-
branches: [main]
107+
branches: [main, REL_2_STABLE]
108108
types: [opened, synchronize, reopened, edited]
109109
workflow_dispatch:
110110
inputs:
@@ -316,7 +316,8 @@ jobs:
316316
"gpcontrib/pxf_fdw:installcheck",
317317
"gpcontrib/zstd:installcheck",
318318
"gpcontrib/gp_sparse_vector:installcheck",
319-
"gpcontrib/gp_toolkit:installcheck"]
319+
"gpcontrib/gp_toolkit:installcheck",
320+
"gpcontrib/gp_exttable_fdw:installcheck"]
320321
},
321322
{"test":"ic-fixme",
322323
"make_configs":["src/test/regress:installcheck-fixme"],

.github/workflows/build-dbg-cloudberry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ name: Apache Cloudberry Build Debug
102102

103103
on:
104104
push:
105-
branches: [main]
105+
branches: [main, REL_2_STABLE]
106106
pull_request:
107-
branches: [main]
107+
branches: [main, REL_2_STABLE]
108108
types: [opened, synchronize, reopened, edited]
109109
workflow_dispatch:
110110
inputs:

.github/workflows/build-deb-cloudberry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ name: Apache Cloudberry Debian Build
7474

7575
on:
7676
push:
77-
branches: [main]
77+
branches: [main, REL_2_STABLE]
7878
pull_request:
79-
branches: [main]
79+
branches: [main, REL_2_STABLE]
8080
types: [opened, synchronize, reopened, edited]
8181
workflow_dispatch: # Manual trigger
8282
inputs:

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

0 commit comments

Comments
 (0)