Update copyright for 2022
[pgsql.git] / src / include / executor / nodeWindowAgg.h
blob4e62c8936d9d2f1f861ba5cb28c91f265abc784a
1 /*-------------------------------------------------------------------------
3 * nodeWindowAgg.h
4 * prototypes for nodeWindowAgg.c
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/executor/nodeWindowAgg.h
12 *-------------------------------------------------------------------------
14 #ifndef NODEWINDOWAGG_H
15 #define NODEWINDOWAGG_H
17 #include "nodes/execnodes.h"
19 extern WindowAggState *ExecInitWindowAgg(WindowAgg *node, EState *estate, int eflags);
20 extern void ExecEndWindowAgg(WindowAggState *node);
21 extern void ExecReScanWindowAgg(WindowAggState *node);
23 #endif /* NODEWINDOWAGG_H */