@@ -95,7 +95,7 @@ bool ts_guc_enable_parallel_chunk_append = true;
9595bool ts_guc_enable_runtime_exclusion = true;
9696bool ts_guc_enable_constraint_exclusion = true;
9797bool ts_guc_enable_hypertable_expansion_for_dml = true;
98- TSDLLEXPORT bool ts_guc_enable_hypertablescan = false;
98+ TSDLLEXPORT bool ts_guc_enable_deferredchunkscan = false;
9999bool ts_guc_enable_qual_propagation = true;
100100TSDLLEXPORT bool ts_guc_enable_columnar_scan_filter_pushdown = true;
101101bool ts_guc_enable_qual_filtering = true;
@@ -213,7 +213,7 @@ DebugRequireOption ts_guc_debug_require_vector_qual = DRO_Allow;
213213
214214DebugRequireOption ts_guc_debug_require_vector_agg = DRO_Allow ;
215215
216- DebugRequireOption ts_guc_debug_require_hypertable_scan = DRO_Allow ;
216+ DebugRequireOption ts_guc_debug_require_deferred_chunk_scan = DRO_Allow ;
217217#endif
218218
219219DebugRequireOption ts_guc_debug_require_batch_sorted_merge = DRO_Allow ;
@@ -781,11 +781,11 @@ _guc_init(void)
781781 NULL ,
782782 NULL );
783783
784- DefineCustomBoolVariable (MAKE_EXTOPTION ("enable_hypertablescan " ),
785- "Enable HypertableScan for LIMIT queries" ,
784+ DefineCustomBoolVariable (MAKE_EXTOPTION ("enable_deferredchunkscan " ),
785+ "Enable DeferredChunkScan for LIMIT queries" ,
786786 "Custom scan node for hypertables that iterates chunks at"
787787 "execution instead of expanding every chunk at plan time." ,
788- & ts_guc_enable_hypertablescan ,
788+ & ts_guc_enable_deferredchunkscan ,
789789 false,
790790 PGC_USERSET ,
791791 0 ,
@@ -1726,14 +1726,14 @@ _guc_init(void)
17261726 /* assign_hook= */ NULL ,
17271727 /* show_hook= */ NULL );
17281728
1729- DefineCustomEnumVariable (/* name= */ MAKE_EXTOPTION ("debug_require_hypertable_scan " ),
1729+ DefineCustomEnumVariable (/* name= */ MAKE_EXTOPTION ("debug_require_deferred_chunk_scan " ),
17301730 /* short_desc= */
1731- "ensure that HypertableScan is used or not" ,
1731+ "ensure that DeferredChunkScan is used or not" ,
17321732 /* long_desc= */
17331733 "this is for debugging purposes, to check whether a query uses the "
1734- "HypertableScan node without depending on version-specific EXPLAIN "
1734+ "DeferredChunkScan node without depending on version-specific EXPLAIN "
17351735 "output" ,
1736- /* valueAddr= */ (int * ) & ts_guc_debug_require_hypertable_scan ,
1736+ /* valueAddr= */ (int * ) & ts_guc_debug_require_deferred_chunk_scan ,
17371737 /* bootValue= */ DRO_Allow ,
17381738 /* options = */ debug_require_options ,
17391739 /* context= */ PGC_USERSET ,
0 commit comments