| 2684 | } |
| 2685 | |
| 2686 | static void |
| 2687 | CheckForModifySystemFunc(Oid funcOid, List *funcName) |
| 2688 | { |
| 2689 | if (!allowSystemTableMods && funcOid < FirstBootstrapObjectId) |
| 2690 | ereport(ERROR, |
| 2691 | (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), |
| 2692 | errmsg("permission defined: \"%s\" is a system function", |
| 2693 | NameListToString(funcName)))); |
| 2694 | } |
| 2695 | |
| 2696 | /* |
| 2697 | * Execute CALL statement |
no test coverage detected