mirror of https://github.com/citusdata/citus.git
map varoattno and varnoold fields in Var
With PG13 varoattno and varnoold fields were renamed as varattnosyn and varnosyn. A macro is defined for these. Commit on Postgres side: 9ce77d75c5ab094637cc4a446296dc3be6e3c221 Command on Postgres side: git log --all --grep="varoattno"pull/3900/head
parent
688ab16bba
commit
ab85a8129d
|
@ -37,6 +37,8 @@
|
|||
#define PortalDefineQuerySelectCompat(a,b,c,e,f) PortalDefineQuery(a,b,c,CMDTAG_SELECT,e,f)
|
||||
#define getOwnedSequencesCompat(a,b) getOwnedSequences(a)
|
||||
#define ExplainOnePlanCompat(a,b,c,d,e,f,g,h) ExplainOnePlan(a,b,c,d,e,f,g,h)
|
||||
#define varoattno varattnosyn
|
||||
#define varnoold varnosyn
|
||||
#else /* pre PG13 */
|
||||
#define lnext_compat(l, r) lnext(r)
|
||||
#define list_delete_cell_compat(l,c,p) list_delete_cell(l,c,p)
|
||||
|
|
Loading…
Reference in New Issue