Skip to content

Commit

Permalink
Remove unused enable_async_append GUC
Browse files Browse the repository at this point in the history
Remove the unused timescaledb.enable_async_append GUC.
  • Loading branch information
jnidzwetzki committed Mar 6, 2024
1 parent 8a9ba06 commit b87aada
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions src/guc.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ TSDLLEXPORT int ts_guc_max_tuples_decompressed_per_dml = 100000;
TSDLLEXPORT bool ts_guc_enable_transparent_decompression = true;
TSDLLEXPORT bool ts_guc_enable_decompression_logrep_markers = false;
TSDLLEXPORT bool ts_guc_enable_decompression_sorted_merge = true;
bool ts_guc_enable_async_append = true;
bool ts_guc_enable_chunkwise_aggregation = true;
bool ts_guc_enable_vectorized_aggregation = true;
TSDLLEXPORT bool ts_guc_enable_compression_indexscan = false;
Expand Down Expand Up @@ -449,18 +448,6 @@ _guc_init(void)
NULL,
NULL);

DefineCustomBoolVariable(MAKE_EXTOPTION("enable_async_append"),
"Enable async query execution on data nodes",
"Enable optimization that runs remote queries asynchronously"
"across data nodes",
&ts_guc_enable_async_append,
true,
PGC_USERSET,
0,
NULL,
NULL,
NULL);

DefineCustomBoolVariable(MAKE_EXTOPTION("enable_chunkwise_aggregation"),
"Enable chunk-wise aggregation",
"Enable the pushdown of aggregations to the"
Expand Down
1 change: 0 additions & 1 deletion src/guc.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ extern TSDLLEXPORT int ts_guc_max_tuples_decompressed_per_dml;
extern TSDLLEXPORT bool ts_guc_enable_transparent_decompression;
extern TSDLLEXPORT bool ts_guc_enable_decompression_logrep_markers;
extern TSDLLEXPORT bool ts_guc_enable_decompression_sorted_merge;
extern TSDLLEXPORT bool ts_guc_enable_async_append;
extern TSDLLEXPORT bool ts_guc_enable_skip_scan;
extern TSDLLEXPORT bool ts_guc_enable_chunkwise_aggregation;
extern TSDLLEXPORT bool ts_guc_enable_vectorized_aggregation;
Expand Down

0 comments on commit b87aada

Please sign in to comment.