boolean
is operator class visible in search path
+ |
+
pg_conversion_is_visible(conversion_oid)
+
+ boolean
+ is conversion visible in search path
+
+
+
pg_conversion_is_visible
+
pg_table_is_visible performs the check for
tables (or views, or any other kind of pg_class> entry).
pg_type_is_visible,
pg_function_is_visible,
- pg_operator_is_visible, and
- pg_opclass_is_visible perform the same sort of
- visibility check for types, functions, operators, and operator
- classes, respectively. For functions and operators, an object in
+ pg_operator_is_visible,
+ pg_opclass_is_visible, and
+ pg_conversion_is_visible perform the same sort of
+ visibility check for types, functions, operators, operator classes
+ and conversions, respectively. For functions and operators, an object in
the search path is visible if there is no object of the same name
and argument data type(s)> earlier in the path. For
operator classes, both name and associated index access method are
extract information from the system catalogs.
pg_get_viewdef,
pg_get_ruledef,
- pg_get_indexdef(),
- pg_get_triggerdef(), and
+ pg_get_indexdef,
+ pg_get_triggerdef, and
pg_get_constraintdef respectively
reconstruct the creating command for a view, rule, index, or
constraint. (Note that this is a decompiled reconstruction, not
get CREATE INDEX> command for index
|
-
pg_get_triggerdef(triggerOID)
+
pg_get_triggerdef(trigger_oid)
text
- Get CREATE [ CONSTRAINT ] TRIGGER> command for trigger
+ get CREATE [ CONSTRAINT ] TRIGGER> command for trigger
|
pg_get_constraintdef(constraint_oid)