---------- * plpgsql_ns_push Create a new namespace level * ---------- */
| 51 | * ---------- |
| 52 | */ |
| 53 | void |
| 54 | plpgsql_ns_push(const char *label, PLpgSQL_label_type label_type) |
| 55 | { |
| 56 | if (label == NULL) |
| 57 | label = ""; |
| 58 | plpgsql_ns_additem(PLPGSQL_NSTYPE_LABEL, (int) label_type, label); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /* ---------- |
no test coverage detected