Test whether an a_expr is a plain NULL constant or not */
| 880 | |
| 881 | /* Test whether an a_expr is a plain NULL constant or not */ |
| 882 | static bool |
| 883 | exprIsNullConstant(Node *arg) |
| 884 | { |
| 885 | if (arg && IsA(arg, A_Const)) |
| 886 | { |
| 887 | A_Const *con = (A_Const *) arg; |
| 888 | |
| 889 | if (con->val.type == T_Null) |
| 890 | return true; |
| 891 | } |
| 892 | return false; |
| 893 | } |
| 894 | |
| 895 | static Node * |
| 896 | transformAExprOp(ParseState *pstate, A_Expr *a) |
no outgoing calls
no test coverage detected