We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfa56c9 commit 988fe9aCopy full SHA for 988fe9a
src/utils.c
@@ -34,32 +34,6 @@
34
#include "utils/typcache.h"
35
36
37
-static bool clause_contains_params_walker(Node *node, void *context);
38
-
39
40
-/*
41
- * Check whether clause contains PARAMs or not
42
- */
43
-bool
44
-clause_contains_params(Node *clause)
45
-{
46
- return expression_tree_walker(clause,
47
- clause_contains_params_walker,
48
- NULL);
49
-}
50
51
-static bool
52
-clause_contains_params_walker(Node *node, void *context)
53
54
- if (node == NULL)
55
- return false;
56
- if (IsA(node, Param))
57
- return true;
58
- return expression_tree_walker(node,
59
60
- context);
61
62
63
/*
64
* Check if this is a "date"-related type.
65
*/
0 commit comments