Skip to content

Commit

Permalink
[#25881] DocDB: Make ysql_enable_packed_row external AutoFlag
Browse files Browse the repository at this point in the history
Summary:
`ysql_enable_packed_row` was an NewInstalOnly AutoFlag and incorrectly made to a `LocalPersisted` AutoFlag in d8acbed/D41634
This changes switches it to the correct `External` class.

Fixes #25881
Jira: DB-15188

Test Plan: Jenkins

Reviewers: rthallam

Reviewed By: rthallam

Subscribers: ybase, yql

Differential Revision: https://phorge.dev.yugabyte.com/D41692
  • Loading branch information
hari90 committed Feb 5, 2025
1 parent 0c4e469 commit 476e71d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yb/docdb/pgsql_operation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ DEFINE_test_flag(int32, slowdown_pgsql_aggregate_read_ms, 0,

// Disable packed row by default in debug builds.
constexpr bool kYsqlEnablePackedRowTargetVal = !yb::kIsDebug;
DEFINE_RUNTIME_AUTO_bool(ysql_enable_packed_row, kLocalPersisted,
DEFINE_RUNTIME_AUTO_bool(ysql_enable_packed_row, kExternal,
!kYsqlEnablePackedRowTargetVal, kYsqlEnablePackedRowTargetVal,
"Whether packed row is enabled for YSQL.");

Expand Down

0 comments on commit 476e71d

Please sign in to comment.