File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change 119
119
/*
120
120
* CheckValidResultRel()
121
121
*/
122
- #if PG_VERSION_NUM >= 100000
122
+ #if PG_VERSION_NUM >= 170000
123
+ #define CheckValidResultRelCompat (rri , cmd ) \
124
+ CheckValidResultRel((rri), (cmd), NIL)
125
+ #elif PG_VERSION_NUM >= 100000
123
126
#define CheckValidResultRelCompat (rri , cmd ) \
124
127
CheckValidResultRel((rri), (cmd))
125
128
#elif PG_VERSION_NUM >= 90500
237
240
#endif
238
241
239
242
240
- /*
241
- * CheckValidResultRel()
242
- */
243
- #if PG_VERSION_NUM >= 100000
244
- #define CheckValidResultRelCompat (rri , cmd ) \
245
- CheckValidResultRel((rri), (cmd))
246
- #elif PG_VERSION_NUM >= 90500
247
- #define CheckValidResultRelCompat (rri , cmd ) \
248
- CheckValidResultRel((rri)->ri_RelationDesc, (cmd))
249
- #endif
250
-
251
-
252
243
/*
253
244
* create_append_path()
254
245
*/
You can’t perform that action at this time.
0 commit comments