mirror of https://github.com/citusdata/citus.git
Bump static assert
No changes needed; won't have to check again until 10.1, or whatever that version ends up being called.pull/1439/head
parent
d5e636b84d
commit
1d52af2492
|
@ -1638,12 +1638,13 @@ MasterIrreducibleExpressionWalker(Node *expression, WalkerState *state)
|
||||||
* should be checked in this function.
|
* should be checked in this function.
|
||||||
*
|
*
|
||||||
* Look through contain_mutable_functions_walker or future PG's equivalent for new
|
* Look through contain_mutable_functions_walker or future PG's equivalent for new
|
||||||
* node types before bumping this version number to fix compilation.
|
* node types before bumping this version number to fix compilation; e.g. for any
|
||||||
|
* PostgreSQL after 9.5, see check_functions_in_node.
|
||||||
*
|
*
|
||||||
* Once you've added them to this check, make sure you also evaluate them in the
|
* Once you've added them to this check, make sure you also evaluate them in the
|
||||||
* executor!
|
* executor!
|
||||||
*/
|
*/
|
||||||
StaticAssertStmt(PG_VERSION_NUM < 90700, "When porting to a newer PG this section"
|
StaticAssertStmt(PG_VERSION_NUM < 100100, "When porting to a newer PG this section"
|
||||||
" needs to be reviewed.");
|
" needs to be reviewed.");
|
||||||
if (IsA(expression, Aggref))
|
if (IsA(expression, Aggref))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue