PostgreSQL Source Code  git master
dropcmds.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * dropcmds.c
4  * handle various "DROP" operations
5  *
6  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  * src/backend/commands/dropcmds.c
12  *
13  *-------------------------------------------------------------------------
14  */
15 #include "postgres.h"
16 
17 #include "access/htup_details.h"
18 #include "access/table.h"
19 #include "access/xact.h"
20 #include "catalog/dependency.h"
21 #include "catalog/namespace.h"
22 #include "catalog/objectaddress.h"
23 #include "catalog/pg_class.h"
24 #include "catalog/pg_namespace.h"
25 #include "catalog/pg_proc.h"
26 #include "commands/defrem.h"
27 #include "miscadmin.h"
28 #include "nodes/makefuncs.h"
29 #include "parser/parse_type.h"
30 #include "utils/acl.h"
31 #include "utils/builtins.h"
32 #include "utils/lsyscache.h"
33 #include "utils/syscache.h"
34 
35 
36 static void does_not_exist_skipping(ObjectType objtype,
37  Node *object);
38 static bool owningrel_does_not_exist_skipping(List *object,
39  const char **msg, char **name);
40 static bool schema_does_not_exist_skipping(List *object,
41  const char **msg, char **name);
43  const char **msg, char **name);
44 
45 
46 /*
47  * Drop one or more objects.
48  *
49  * We don't currently handle all object types here. Relations, for example,
50  * require special handling, because (for example) indexes have additional
51  * locking requirements.
52  *
53  * We look up all the objects first, and then delete them in a single
54  * performMultipleDeletions() call. This avoids unnecessary DROP RESTRICT
55  * errors if there are dependencies between them.
56  */
57 void
59 {
60  ObjectAddresses *objects;
61  ListCell *cell1;
62 
63  objects = new_object_addresses();
64 
65  foreach(cell1, stmt->objects)
66  {
67  ObjectAddress address;
68  Node *object = lfirst(cell1);
69  Relation relation = NULL;
70  Oid namespaceId;
71 
72  /* Get an ObjectAddress for the object. */
73  address = get_object_address(stmt->removeType,
74  object,
75  &relation,
77  stmt->missing_ok);
78 
79  /*
80  * Issue NOTICE if supplied object was not found. Note this is only
81  * relevant in the missing_ok case, because otherwise
82  * get_object_address would have thrown an error.
83  */
84  if (!OidIsValid(address.objectId))
85  {
86  Assert(stmt->missing_ok);
87  does_not_exist_skipping(stmt->removeType, object);
88  continue;
89  }
90 
91  /*
92  * Although COMMENT ON FUNCTION, SECURITY LABEL ON FUNCTION, etc. are
93  * happy to operate on an aggregate as on any other function, we have
94  * historically not allowed this for DROP FUNCTION.
95  */
96  if (stmt->removeType == OBJECT_FUNCTION)
97  {
98  if (get_func_prokind(address.objectId) == PROKIND_AGGREGATE)
99  ereport(ERROR,
100  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
101  errmsg("\"%s\" is an aggregate function",
102  NameListToString(castNode(ObjectWithArgs, object)->objname)),
103  errhint("Use DROP AGGREGATE to drop aggregate functions.")));
104  }
105 
106  /* Check permissions. */
107  namespaceId = get_object_namespace(&address);
108  if (!OidIsValid(namespaceId) ||
109  !object_ownercheck(NamespaceRelationId, namespaceId, GetUserId()))
110  check_object_ownership(GetUserId(), stmt->removeType, address,
111  object, relation);
112 
113  /*
114  * Make note if a temporary namespace has been accessed in this
115  * transaction.
116  */
117  if (OidIsValid(namespaceId) && isTempNamespace(namespaceId))
119 
120  /* Release any relcache reference count, but keep lock until commit. */
121  if (relation)
122  table_close(relation, NoLock);
123 
124  add_exact_object_address(&address, objects);
125  }
126 
127  /* Here we really delete them. */
128  performMultipleDeletions(objects, stmt->behavior, 0);
129 
130  free_object_addresses(objects);
131 }
132 
133 /*
134  * owningrel_does_not_exist_skipping
135  * Subroutine for RemoveObjects
136  *
137  * After determining that a specification for a rule or trigger returns that
138  * the specified object does not exist, test whether its owning relation, and
139  * its schema, exist or not; if they do, return false --- the trigger or rule
140  * itself is missing instead. If the owning relation or its schema do not
141  * exist, fill the error message format string and name, and return true.
142  */
143 static bool
144 owningrel_does_not_exist_skipping(List *object, const char **msg, char **name)
145 {
146  List *parent_object;
147  RangeVar *parent_rel;
148 
149  parent_object = list_copy_head(object, list_length(object) - 1);
150 
151  if (schema_does_not_exist_skipping(parent_object, msg, name))
152  return true;
153 
154  parent_rel = makeRangeVarFromNameList(parent_object);
155 
156  if (!OidIsValid(RangeVarGetRelid(parent_rel, NoLock, true)))
157  {
158  *msg = gettext_noop("relation \"%s\" does not exist, skipping");
159  *name = NameListToString(parent_object);
160 
161  return true;
162  }
163 
164  return false;
165 }
166 
167 /*
168  * schema_does_not_exist_skipping
169  * Subroutine for RemoveObjects
170  *
171  * After determining that a specification for a schema-qualifiable object
172  * refers to an object that does not exist, test whether the specified schema
173  * exists or not. If no schema was specified, or if the schema does exist,
174  * return false -- the object itself is missing instead. If the specified
175  * schema does not exist, fill the error message format string and the
176  * specified schema name, and return true.
177  */
178 static bool
179 schema_does_not_exist_skipping(List *object, const char **msg, char **name)
180 {
181  RangeVar *rel;
182 
183  rel = makeRangeVarFromNameList(object);
184 
185  if (rel->schemaname != NULL &&
187  {
188  *msg = gettext_noop("schema \"%s\" does not exist, skipping");
189  *name = rel->schemaname;
190 
191  return true;
192  }
193 
194  return false;
195 }
196 
197 /*
198  * type_in_list_does_not_exist_skipping
199  * Subroutine for RemoveObjects
200  *
201  * After determining that a specification for a function, cast, aggregate or
202  * operator returns that the specified object does not exist, test whether the
203  * involved datatypes, and their schemas, exist or not; if they do, return
204  * false --- the original object itself is missing instead. If the datatypes
205  * or schemas do not exist, fill the error message format string and the
206  * missing name, and return true.
207  *
208  * First parameter is a list of TypeNames.
209  */
210 static bool
212  char **name)
213 {
214  ListCell *l;
215 
216  foreach(l, typenames)
217  {
218  TypeName *typeName = lfirst_node(TypeName, l);
219 
220  if (typeName != NULL)
221  {
222  if (!OidIsValid(LookupTypeNameOid(NULL, typeName, true)))
223  {
224  /* type doesn't exist, try to find why */
225  if (schema_does_not_exist_skipping(typeName->names, msg, name))
226  return true;
227 
228  *msg = gettext_noop("type \"%s\" does not exist, skipping");
229  *name = TypeNameToString(typeName);
230 
231  return true;
232  }
233  }
234  }
235 
236  return false;
237 }
238 
239 /*
240  * does_not_exist_skipping
241  * Subroutine for RemoveObjects
242  *
243  * Generate a NOTICE stating that the named object was not found, and is
244  * being skipped. This is only relevant when "IF EXISTS" is used; otherwise,
245  * get_object_address() in RemoveObjects would have thrown an ERROR.
246  */
247 static void
249 {
250  const char *msg = NULL;
251  char *name = NULL;
252  char *args = NULL;
253 
254  switch (objtype)
255  {
257  msg = gettext_noop("access method \"%s\" does not exist, skipping");
258  name = strVal(object);
259  break;
260  case OBJECT_TYPE:
261  case OBJECT_DOMAIN:
262  {
263  TypeName *typ = castNode(TypeName, object);
264 
265  if (!schema_does_not_exist_skipping(typ->names, &msg, &name))
266  {
267  msg = gettext_noop("type \"%s\" does not exist, skipping");
268  name = TypeNameToString(typ);
269  }
270  }
271  break;
272  case OBJECT_COLLATION:
273  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
274  {
275  msg = gettext_noop("collation \"%s\" does not exist, skipping");
276  name = NameListToString(castNode(List, object));
277  }
278  break;
279  case OBJECT_CONVERSION:
280  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
281  {
282  msg = gettext_noop("conversion \"%s\" does not exist, skipping");
283  name = NameListToString(castNode(List, object));
284  }
285  break;
286  case OBJECT_SCHEMA:
287  msg = gettext_noop("schema \"%s\" does not exist, skipping");
288  name = strVal(object);
289  break;
291  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
292  {
293  msg = gettext_noop("statistics object \"%s\" does not exist, skipping");
294  name = NameListToString(castNode(List, object));
295  }
296  break;
297  case OBJECT_TSPARSER:
298  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
299  {
300  msg = gettext_noop("text search parser \"%s\" does not exist, skipping");
301  name = NameListToString(castNode(List, object));
302  }
303  break;
304  case OBJECT_TSDICTIONARY:
305  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
306  {
307  msg = gettext_noop("text search dictionary \"%s\" does not exist, skipping");
308  name = NameListToString(castNode(List, object));
309  }
310  break;
311  case OBJECT_TSTEMPLATE:
312  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
313  {
314  msg = gettext_noop("text search template \"%s\" does not exist, skipping");
315  name = NameListToString(castNode(List, object));
316  }
317  break;
319  if (!schema_does_not_exist_skipping(castNode(List, object), &msg, &name))
320  {
321  msg = gettext_noop("text search configuration \"%s\" does not exist, skipping");
322  name = NameListToString(castNode(List, object));
323  }
324  break;
325  case OBJECT_EXTENSION:
326  msg = gettext_noop("extension \"%s\" does not exist, skipping");
327  name = strVal(object);
328  break;
329  case OBJECT_FUNCTION:
330  {
331  ObjectWithArgs *owa = castNode(ObjectWithArgs, object);
332 
333  if (!schema_does_not_exist_skipping(owa->objname, &msg, &name) &&
335  {
336  msg = gettext_noop("function %s(%s) does not exist, skipping");
337  name = NameListToString(owa->objname);
339  }
340  break;
341  }
342  case OBJECT_PROCEDURE:
343  {
344  ObjectWithArgs *owa = castNode(ObjectWithArgs, object);
345 
346  if (!schema_does_not_exist_skipping(owa->objname, &msg, &name) &&
348  {
349  msg = gettext_noop("procedure %s(%s) does not exist, skipping");
350  name = NameListToString(owa->objname);
352  }
353  break;
354  }
355  case OBJECT_ROUTINE:
356  {
357  ObjectWithArgs *owa = castNode(ObjectWithArgs, object);
358 
359  if (!schema_does_not_exist_skipping(owa->objname, &msg, &name) &&
361  {
362  msg = gettext_noop("routine %s(%s) does not exist, skipping");
363  name = NameListToString(owa->objname);
365  }
366  break;
367  }
368  case OBJECT_AGGREGATE:
369  {
370  ObjectWithArgs *owa = castNode(ObjectWithArgs, object);
371 
372  if (!schema_does_not_exist_skipping(owa->objname, &msg, &name) &&
374  {
375  msg = gettext_noop("aggregate %s(%s) does not exist, skipping");
376  name = NameListToString(owa->objname);
378  }
379  break;
380  }
381  case OBJECT_OPERATOR:
382  {
383  ObjectWithArgs *owa = castNode(ObjectWithArgs, object);
384 
385  if (!schema_does_not_exist_skipping(owa->objname, &msg, &name) &&
387  {
388  msg = gettext_noop("operator %s does not exist, skipping");
389  name = NameListToString(owa->objname);
390  }
391  break;
392  }
393  case OBJECT_LANGUAGE:
394  msg = gettext_noop("language \"%s\" does not exist, skipping");
395  name = strVal(object);
396  break;
397  case OBJECT_CAST:
398  {
401  {
402  /* XXX quote or no quote? */
403  msg = gettext_noop("cast from type %s to type %s does not exist, skipping");
406  }
407  }
408  break;
409  case OBJECT_TRANSFORM:
411  {
412  msg = gettext_noop("transform for type %s language \"%s\" does not exist, skipping");
414  args = strVal(lsecond(castNode(List, object)));
415  }
416  break;
417  case OBJECT_TRIGGER:
418  if (!owningrel_does_not_exist_skipping(castNode(List, object), &msg, &name))
419  {
420  msg = gettext_noop("trigger \"%s\" for relation \"%s\" does not exist, skipping");
421  name = strVal(llast(castNode(List, object)));
423  list_length(castNode(List, object)) - 1));
424  }
425  break;
426  case OBJECT_POLICY:
427  if (!owningrel_does_not_exist_skipping(castNode(List, object), &msg, &name))
428  {
429  msg = gettext_noop("policy \"%s\" for relation \"%s\" does not exist, skipping");
430  name = strVal(llast(castNode(List, object)));
432  list_length(castNode(List, object)) - 1));
433  }
434  break;
436  msg = gettext_noop("event trigger \"%s\" does not exist, skipping");
437  name = strVal(object);
438  break;
439  case OBJECT_RULE:
440  if (!owningrel_does_not_exist_skipping(castNode(List, object), &msg, &name))
441  {
442  msg = gettext_noop("rule \"%s\" for relation \"%s\" does not exist, skipping");
443  name = strVal(llast(castNode(List, object)));
445  list_length(castNode(List, object)) - 1));
446  }
447  break;
448  case OBJECT_FDW:
449  msg = gettext_noop("foreign-data wrapper \"%s\" does not exist, skipping");
450  name = strVal(object);
451  break;
453  msg = gettext_noop("server \"%s\" does not exist, skipping");
454  name = strVal(object);
455  break;
456  case OBJECT_OPCLASS:
457  {
458  List *opcname = list_copy_tail(castNode(List, object), 1);
459 
460  if (!schema_does_not_exist_skipping(opcname, &msg, &name))
461  {
462  msg = gettext_noop("operator class \"%s\" does not exist for access method \"%s\", skipping");
463  name = NameListToString(opcname);
464  args = strVal(linitial(castNode(List, object)));
465  }
466  }
467  break;
468  case OBJECT_OPFAMILY:
469  {
470  List *opfname = list_copy_tail(castNode(List, object), 1);
471 
472  if (!schema_does_not_exist_skipping(opfname, &msg, &name))
473  {
474  msg = gettext_noop("operator family \"%s\" does not exist for access method \"%s\", skipping");
475  name = NameListToString(opfname);
476  args = strVal(linitial(castNode(List, object)));
477  }
478  }
479  break;
480  case OBJECT_PUBLICATION:
481  msg = gettext_noop("publication \"%s\" does not exist, skipping");
482  name = strVal(object);
483  break;
484 
485  case OBJECT_COLUMN:
486  case OBJECT_DATABASE:
488  case OBJECT_INDEX:
489  case OBJECT_MATVIEW:
490  case OBJECT_ROLE:
491  case OBJECT_SEQUENCE:
492  case OBJECT_SUBSCRIPTION:
493  case OBJECT_TABLE:
494  case OBJECT_TABLESPACE:
495  case OBJECT_VIEW:
496 
497  /*
498  * These are handled elsewhere, so if someone gets here the code
499  * is probably wrong or should be revisited.
500  */
501  elog(ERROR, "unsupported object type: %d", (int) objtype);
502  break;
503 
504  case OBJECT_AMOP:
505  case OBJECT_AMPROC:
506  case OBJECT_ATTRIBUTE:
507  case OBJECT_DEFAULT:
508  case OBJECT_DEFACL:
510  case OBJECT_LARGEOBJECT:
515  case OBJECT_USER_MAPPING:
516  /* These are currently not used or needed. */
517  elog(ERROR, "unsupported object type: %d", (int) objtype);
518  break;
519 
520  /* no default, to let compiler warn about missing case */
521  }
522  if (!msg)
523  elog(ERROR, "unrecognized object type: %d", (int) objtype);
524 
525  if (!args)
526  ereport(NOTICE, (errmsg(msg, name)));
527  else
528  ereport(NOTICE, (errmsg(msg, name, args)));
529 }
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
Definition: aclchk.c:3976
#define gettext_noop(x)
Definition: c.h:1204
#define OidIsValid(objectId)
Definition: c.h:759
void performMultipleDeletions(const ObjectAddresses *objects, DropBehavior behavior, int flags)
Definition: dependency.c:387
ObjectAddresses * new_object_addresses(void)
Definition: dependency.c:2532
void add_exact_object_address(const ObjectAddress *object, ObjectAddresses *addrs)
Definition: dependency.c:2581
void free_object_addresses(ObjectAddresses *addrs)
Definition: dependency.c:2821
static bool type_in_list_does_not_exist_skipping(List *typenames, const char **msg, char **name)
Definition: dropcmds.c:211
void RemoveObjects(DropStmt *stmt)
Definition: dropcmds.c:58
static void does_not_exist_skipping(ObjectType objtype, Node *object)
Definition: dropcmds.c:248
static bool owningrel_does_not_exist_skipping(List *object, const char **msg, char **name)
Definition: dropcmds.c:144
static bool schema_does_not_exist_skipping(List *object, const char **msg, char **name)
Definition: dropcmds.c:179
int errhint(const char *fmt,...)
Definition: elog.c:1316
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define NOTICE
Definition: elog.h:35
#define ereport(elevel,...)
Definition: elog.h:149
const char * name
Definition: encode.c:571
#define stmt
Definition: indent_codes.h:59
const char ** typenames
Definition: lexi.c:115
Assert(fmt[strlen(fmt) - 1] !='\n')
List * list_copy_head(const List *oldlist, int len)
Definition: list.c:1592
List * list_copy_tail(const List *oldlist, int nskip)
Definition: list.c:1612
#define NoLock
Definition: lockdefs.h:34
#define AccessExclusiveLock
Definition: lockdefs.h:43
char get_func_prokind(Oid funcid)
Definition: lsyscache.c:1800
Oid GetUserId(void)
Definition: miscinit.c:510
RangeVar * makeRangeVarFromNameList(List *names)
Definition: namespace.c:3105
bool isTempNamespace(Oid namespaceId)
Definition: namespace.c:3200
char * NameListToString(List *names)
Definition: namespace.c:3145
Oid LookupNamespaceNoError(const char *nspname)
Definition: namespace.c:2906
#define RangeVarGetRelid(relation, lockmode, missing_ok)
Definition: namespace.h:79
#define castNode(_type_, nodeptr)
Definition: nodes.h:197
void check_object_ownership(Oid roleid, ObjectType objtype, ObjectAddress address, Node *object, Relation relation)
ObjectAddress get_object_address(ObjectType objtype, Node *object, Relation *relp, LOCKMODE lockmode, bool missing_ok)
Oid get_object_namespace(const ObjectAddress *address)
char * TypeNameListToString(List *typenames)
Definition: parse_type.c:492
char * TypeNameToString(const TypeName *typeName)
Definition: parse_type.c:478
Oid LookupTypeNameOid(ParseState *pstate, const TypeName *typeName, bool missing_ok)
Definition: parse_type.c:232
ObjectType
Definition: parsenodes.h:2081
@ OBJECT_EVENT_TRIGGER
Definition: parsenodes.h:2096
@ OBJECT_FDW
Definition: parsenodes.h:2098
@ OBJECT_TSPARSER
Definition: parsenodes.h:2129
@ OBJECT_COLLATION
Definition: parsenodes.h:2089
@ OBJECT_USER_MAPPING
Definition: parsenodes.h:2132
@ OBJECT_ACCESS_METHOD
Definition: parsenodes.h:2082
@ OBJECT_OPCLASS
Definition: parsenodes.h:2106
@ OBJECT_DEFACL
Definition: parsenodes.h:2093
@ OBJECT_AGGREGATE
Definition: parsenodes.h:2083
@ OBJECT_MATVIEW
Definition: parsenodes.h:2105
@ OBJECT_SCHEMA
Definition: parsenodes.h:2118
@ OBJECT_POLICY
Definition: parsenodes.h:2110
@ OBJECT_OPERATOR
Definition: parsenodes.h:2107
@ OBJECT_FOREIGN_TABLE
Definition: parsenodes.h:2100
@ OBJECT_TSCONFIGURATION
Definition: parsenodes.h:2127
@ OBJECT_OPFAMILY
Definition: parsenodes.h:2108
@ OBJECT_DOMAIN
Definition: parsenodes.h:2094
@ OBJECT_COLUMN
Definition: parsenodes.h:2088
@ OBJECT_TABLESPACE
Definition: parsenodes.h:2124
@ OBJECT_ROLE
Definition: parsenodes.h:2115
@ OBJECT_ROUTINE
Definition: parsenodes.h:2116
@ OBJECT_LARGEOBJECT
Definition: parsenodes.h:2104
@ OBJECT_PUBLICATION_NAMESPACE
Definition: parsenodes.h:2113
@ OBJECT_PROCEDURE
Definition: parsenodes.h:2111
@ OBJECT_EXTENSION
Definition: parsenodes.h:2097
@ OBJECT_INDEX
Definition: parsenodes.h:2102
@ OBJECT_DEFAULT
Definition: parsenodes.h:2092
@ OBJECT_DATABASE
Definition: parsenodes.h:2091
@ OBJECT_SEQUENCE
Definition: parsenodes.h:2119
@ OBJECT_TSTEMPLATE
Definition: parsenodes.h:2130
@ OBJECT_LANGUAGE
Definition: parsenodes.h:2103
@ OBJECT_AMOP
Definition: parsenodes.h:2084
@ OBJECT_PUBLICATION_REL
Definition: parsenodes.h:2114
@ OBJECT_FOREIGN_SERVER
Definition: parsenodes.h:2099
@ OBJECT_TSDICTIONARY
Definition: parsenodes.h:2128
@ OBJECT_ATTRIBUTE
Definition: parsenodes.h:2086
@ OBJECT_PUBLICATION
Definition: parsenodes.h:2112
@ OBJECT_RULE
Definition: parsenodes.h:2117
@ OBJECT_CONVERSION
Definition: parsenodes.h:2090
@ OBJECT_AMPROC
Definition: parsenodes.h:2085
@ OBJECT_TABLE
Definition: parsenodes.h:2123
@ OBJECT_VIEW
Definition: parsenodes.h:2133
@ OBJECT_PARAMETER_ACL
Definition: parsenodes.h:2109
@ OBJECT_TYPE
Definition: parsenodes.h:2131
@ OBJECT_FUNCTION
Definition: parsenodes.h:2101
@ OBJECT_TABCONSTRAINT
Definition: parsenodes.h:2122
@ OBJECT_DOMCONSTRAINT
Definition: parsenodes.h:2095
@ OBJECT_SUBSCRIPTION
Definition: parsenodes.h:2120
@ OBJECT_STATISTIC_EXT
Definition: parsenodes.h:2121
@ OBJECT_CAST
Definition: parsenodes.h:2087
@ OBJECT_TRIGGER
Definition: parsenodes.h:2126
@ OBJECT_TRANSFORM
Definition: parsenodes.h:2125
#define lfirst(lc)
Definition: pg_list.h:172
#define llast(l)
Definition: pg_list.h:198
#define lfirst_node(type, lc)
Definition: pg_list.h:176
static int list_length(const List *l)
Definition: pg_list.h:152
#define linitial_node(type, l)
Definition: pg_list.h:181
#define lsecond_node(type, l)
Definition: pg_list.h:186
#define list_make1(x1)
Definition: pg_list.h:212
#define linitial(l)
Definition: pg_list.h:178
#define lsecond(l)
Definition: pg_list.h:183
unsigned int Oid
Definition: postgres_ext.h:31
Definition: pg_list.h:54
Definition: nodes.h:129
char * schemaname
Definition: primnodes.h:71
List * names
Definition: parsenodes.h:266
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
#define strVal(v)
Definition: value.h:82
int MyXactFlags
Definition: xact.c:136
#define XACT_FLAGS_ACCESSEDTEMPNAMESPACE
Definition: xact.h:102