#include "parser/parse_node.h"
-typedef struct AttrMap AttrMap;
+struct AttrMap; /* avoid including attmap.h here */
+
extern List *transformCreateStmt(CreateStmt *stmt, const char *queryString);
extern List *transformAlterTableStmt(Oid relid, AlterTableStmt *stmt,
PartitionBoundSpec *spec);
extern IndexStmt *generateClonedIndexStmt(RangeVar *heapRel,
Relation source_idx,
- const AttrMap *attmap,
+ const struct AttrMap *attmap,
Oid *constraintOid);
#endif /* PARSE_UTILCMD_H */
#include "nodes/parsenodes.h"
+struct AttrMap; /* avoid including attmap.h here */
+
-typedef struct AttrMap AttrMap;
typedef struct replace_rte_variables_context replace_rte_variables_context;
typedef Node *(*replace_rte_variables_callback) (Var *var,
extern Node *map_variable_attnos(Node *node,
int target_varno, int sublevels_up,
- const AttrMap *attno_map,
+ const struct AttrMap *attno_map,
Oid to_rowtype, bool *found_whole_row);
extern Node *ReplaceVarsFromTargetList(Node *node,