Define __EXTENSIONS__ on Solaris, too.
[pgsql.git] / src / backend / catalog / pg_conversion.c
blob0770878eac582787f5c5e12bb4121564f30485a4
1 /*-------------------------------------------------------------------------
3 * pg_conversion.c
4 * routines to support manipulation of the pg_conversion relation
6 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * src/backend/catalog/pg_conversion.c
13 *-------------------------------------------------------------------------
15 #include "postgres.h"
17 #include "access/htup_details.h"
18 #include "access/table.h"
19 #include "catalog/catalog.h"
20 #include "catalog/dependency.h"
21 #include "catalog/indexing.h"
22 #include "catalog/objectaccess.h"
23 #include "catalog/pg_conversion.h"
24 #include "catalog/pg_namespace.h"
25 #include "catalog/pg_proc.h"
26 #include "mb/pg_wchar.h"
27 #include "utils/builtins.h"
28 #include "utils/catcache.h"
29 #include "utils/rel.h"
30 #include "utils/syscache.h"
33 * ConversionCreate
35 * Add a new tuple to pg_conversion.
37 ObjectAddress
38 ConversionCreate(const char *conname, Oid connamespace,
39 Oid conowner,
40 int32 conforencoding, int32 contoencoding,
41 Oid conproc, bool def)
43 int i;
44 Relation rel;
45 TupleDesc tupDesc;
46 HeapTuple tup;
47 Oid oid;
48 bool nulls[Natts_pg_conversion];
49 Datum values[Natts_pg_conversion];
50 NameData cname;
51 ObjectAddress myself,
52 referenced;
54 /* sanity checks */
55 if (!conname)
56 elog(ERROR, "no conversion name supplied");
58 /* make sure there is no existing conversion of same name */
59 if (SearchSysCacheExists2(CONNAMENSP,
60 PointerGetDatum(conname),
61 ObjectIdGetDatum(connamespace)))
62 ereport(ERROR,
63 (errcode(ERRCODE_DUPLICATE_OBJECT),
64 errmsg("conversion \"%s\" already exists", conname)));
66 if (def)
69 * make sure there is no existing default <for encoding><to encoding>
70 * pair in this name space
72 if (FindDefaultConversion(connamespace,
73 conforencoding,
74 contoencoding))
75 ereport(ERROR,
76 (errcode(ERRCODE_DUPLICATE_OBJECT),
77 errmsg("default conversion for %s to %s already exists",
78 pg_encoding_to_char(conforencoding),
79 pg_encoding_to_char(contoencoding))));
82 /* open pg_conversion */
83 rel = table_open(ConversionRelationId, RowExclusiveLock);
84 tupDesc = rel->rd_att;
86 /* initialize nulls and values */
87 for (i = 0; i < Natts_pg_conversion; i++)
89 nulls[i] = false;
90 values[i] = (Datum) NULL;
93 /* form a tuple */
94 namestrcpy(&cname, conname);
95 oid = GetNewOidWithIndex(rel, ConversionOidIndexId,
96 Anum_pg_conversion_oid);
97 values[Anum_pg_conversion_oid - 1] = ObjectIdGetDatum(oid);
98 values[Anum_pg_conversion_conname - 1] = NameGetDatum(&cname);
99 values[Anum_pg_conversion_connamespace - 1] = ObjectIdGetDatum(connamespace);
100 values[Anum_pg_conversion_conowner - 1] = ObjectIdGetDatum(conowner);
101 values[Anum_pg_conversion_conforencoding - 1] = Int32GetDatum(conforencoding);
102 values[Anum_pg_conversion_contoencoding - 1] = Int32GetDatum(contoencoding);
103 values[Anum_pg_conversion_conproc - 1] = ObjectIdGetDatum(conproc);
104 values[Anum_pg_conversion_condefault - 1] = BoolGetDatum(def);
106 tup = heap_form_tuple(tupDesc, values, nulls);
108 /* insert a new tuple */
109 CatalogTupleInsert(rel, tup);
111 myself.classId = ConversionRelationId;
112 myself.objectId = oid;
113 myself.objectSubId = 0;
115 /* create dependency on conversion procedure */
116 referenced.classId = ProcedureRelationId;
117 referenced.objectId = conproc;
118 referenced.objectSubId = 0;
119 recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
121 /* create dependency on namespace */
122 referenced.classId = NamespaceRelationId;
123 referenced.objectId = connamespace;
124 referenced.objectSubId = 0;
125 recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
127 /* create dependency on owner */
128 recordDependencyOnOwner(ConversionRelationId, oid, conowner);
130 /* dependency on extension */
131 recordDependencyOnCurrentExtension(&myself, false);
133 /* Post creation hook for new conversion */
134 InvokeObjectPostCreateHook(ConversionRelationId, oid, 0);
136 heap_freetuple(tup);
137 table_close(rel, RowExclusiveLock);
139 return myself;
143 * FindDefaultConversion
145 * Find "default" conversion proc by for_encoding and to_encoding in the
146 * given namespace.
148 * If found, returns the procedure's oid, otherwise InvalidOid. Note that
149 * you get the procedure's OID not the conversion's OID!
152 FindDefaultConversion(Oid name_space, int32 for_encoding, int32 to_encoding)
154 CatCList *catlist;
155 HeapTuple tuple;
156 Form_pg_conversion body;
157 Oid proc = InvalidOid;
158 int i;
160 catlist = SearchSysCacheList3(CONDEFAULT,
161 ObjectIdGetDatum(name_space),
162 Int32GetDatum(for_encoding),
163 Int32GetDatum(to_encoding));
165 for (i = 0; i < catlist->n_members; i++)
167 tuple = &catlist->members[i]->tuple;
168 body = (Form_pg_conversion) GETSTRUCT(tuple);
169 if (body->condefault)
171 proc = body->conproc;
172 break;
175 ReleaseSysCacheList(catlist);
176 return proc;