diff options
Diffstat (limited to 'src/function.c')
| -rw-r--r-- | src/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/function.c b/src/function.c index 19b77ad..f5f1d42 100644 --- a/src/function.c +++ b/src/function.c @@ -479,7 +479,7 @@ fn_compile(FunctionCallInfo fcinfo, Form_pg_proc proc_struct; proc_struct = (Form_pg_proc) GETSTRUCT(proc_tuple); - if (proc_struct->provolatile != 'v') + if (proc_struct->provolatile != PROVOLATILE_VOLATILE) elog(ERROR, "PL/Proxy functions must be volatile"); f = fn_new(fcinfo, proc_tuple); |
