Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move chunkwise aggregation into TSL part #7159

Merged
merged 12 commits into from
Aug 8, 2024
4 changes: 3 additions & 1 deletion src/gapfill.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
*/
#pragma once

#include "export.h"

#define GAPFILL_PATH_NAME "GapFill"

extern bool ts_is_gapfill_path(Path *path);
extern TSDLLEXPORT bool ts_is_gapfill_path(Path *path);
4 changes: 2 additions & 2 deletions src/import/planner.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
extern TSDLLEXPORT void ts_make_inh_translation_list(Relation oldrelation, Relation newrelation,
Index newvarno, List **translated_vars);

extern struct PathTarget *ts_make_partial_grouping_target(struct PlannerInfo *root,
PathTarget *grouping_target);
extern TSDLLEXPORT struct PathTarget *ts_make_partial_grouping_target(struct PlannerInfo *root,
PathTarget *grouping_target);

extern bool ts_get_variable_range(PlannerInfo *root, VariableStatData *vardata, Oid sortop,
Datum *min, Datum *max);
Expand Down
Loading
Loading