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 213c7df commit 2ac3be2Copy full SHA for 2ac3be2
src/backend/utils/adt/ruleutils.c
@@ -1988,6 +1988,19 @@ pg_get_functiondef(PG_FUNCTION_ARGS)
1988
case PROVOLATILE_VOLATILE:
1989
break;
1990
}
1991
+
1992
+ switch (proc->proparallel)
1993
+ {
1994
+ case PROPARALLEL_SAFE:
1995
+ appendStringInfoString(&buf, " PARALLEL SAFE");
1996
+ break;
1997
+ case PROPARALLEL_RESTRICTED:
1998
+ appendStringInfoString(&buf, " PARALLEL RESTRICTED");
1999
2000
+ case PROPARALLEL_UNSAFE:
2001
2002
+ }
2003
2004
if (proc->proisstrict)
2005
appendStringInfoString(&buf, " STRICT");
2006
if (proc->prosecdef)
0 commit comments