Skip to content

Commit 02a4bac

Browse files
committed
[#23896] Changing the pg-parity flag from --enable_pg_parity_tech_preview to --enable_pg_parity_early_access.
Summary: Original commit to change this value was incorrectly resolved during a merge conflict resulting in incorrect flag value. Changing the flag name to --enable_pg_parity_early_access in all the branches. Test Plan: ./yb_build.sh --java-test 'org.yb.yugabyted.*' Reviewers: sgarg-yb, djiang Reviewed By: djiang Subscribers: yugabyted-dev Differential Revision: https://phorge.dev.yugabyte.com/D37996
1 parent 1977cf7 commit 02a4bac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/yugabyted

+3-3
Original file line numberDiff line numberDiff line change
@@ -7158,9 +7158,9 @@ class ControlScript(object):
71587158

71597159
self.configs.saved_data["ca_cert_file_path"] = os.path.join(args.certs_dir,
71607160
"ca.crt")
7161-
if args.enable_pg_parity_tech_preview:
7161+
if args.enable_pg_parity_early_access:
71627162
self.configs.temp_data["enable_pg_parity"] = \
7163-
args.enable_pg_parity_tech_preview
7163+
args.enable_pg_parity_early_access
71647164

71657165
args.background = self.parse_bool(args.background)
71667166
if args.ui is not None:
@@ -7705,7 +7705,7 @@ class ControlScript(object):
77057705
"--config", help="{} user configuration file path".format(
77067706
SCRIPT_NAME), metavar="")
77077707
cur_parser.add_argument(
7708-
"--enable_pg_parity_tech_preview", help="Enable PostgreSQL compatibility features."
7708+
"--enable_pg_parity_early_access", help="Enable PostgreSQL compatibility features."
77097709
" Default value is False.", action="store_true", default=False)
77107710

77117711
# Hidden commands for development/advanced users

java/yb-yugabyted/src/test/java/org/yb/yugabyted/TestYugabytedPgParity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public TestYugabytedPgParity() {
3838

3939
clusterConfigurations = new ArrayList<>();
4040
Map<String, String> yugabytedFlags = new HashMap<>();
41-
yugabytedFlags.put("enable_pg_parity_tech_preview", "");
41+
yugabytedFlags.put("enable_pg_parity_early_access", "");
4242

4343
for (int i = 0; i < clusterParameters.numNodes; i++) {
4444
MiniYugabytedNodeConfigurations nodeConfigurations =

0 commit comments

Comments
 (0)