1 | /*------------------------------------------------------------------------- |
2 | * |
3 | * regproc.h |
4 | * Functions for the built-in types regproc, regclass, regtype, etc. |
5 | * |
6 | * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group |
7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | * |
9 | * src/include/utils/regproc.h |
10 | * |
11 | *------------------------------------------------------------------------- |
12 | */ |
13 | #ifndef REGPROC_H |
14 | #define REGPROC_H |
15 | |
16 | #include "nodes/pg_list.h" |
17 | |
18 | extern List *stringToQualifiedNameList(const char *string); |
19 | extern char *format_procedure(Oid procedure_oid); |
20 | extern char *format_procedure_qualified(Oid procedure_oid); |
21 | extern void format_procedure_parts(Oid operator_oid, List **objnames, |
22 | List **objargs); |
23 | extern char *format_operator(Oid operator_oid); |
24 | extern char *format_operator_qualified(Oid operator_oid); |
25 | extern void format_operator_parts(Oid operator_oid, List **objnames, |
26 | List **objargs); |
27 | |
28 | #endif |
29 | |