You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
DROP OPERATOR CLASS <replaceable class="PARAMETER">name</replaceable> USING <replaceable class="PARAMETER">index_method</replaceable> [ CASCADE | RESTRICT ]
23
+
DROP OPERATOR CLASS[ IF EXISTS ]<replaceable class="PARAMETER">name</replaceable> USING <replaceable class="PARAMETER">index_method</replaceable> [ CASCADE | RESTRICT ]
24
24
</synopsis>
25
25
</refsynopsisdiv>
26
26
@@ -37,6 +37,17 @@ DROP OPERATOR CLASS <replaceable class="PARAMETER">name</replaceable> USING <rep
37
37
<title>Parameters</title>
38
38
39
39
<variablelist>
40
+
41
+
<varlistentry>
42
+
<term><literal>IF EXISTS</literal></term>
43
+
<listitem>
44
+
<para>
45
+
Do not throw an error if the operator class does not exist. A notice is issued
DROP RULE <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">relation</replaceable> [ CASCADE | RESTRICT ]
23
+
DROP RULE[ IF EXISTS ]<replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">relation</replaceable> [ CASCADE | RESTRICT ]
24
24
</synopsis>
25
25
</refsynopsisdiv>
26
26
@@ -36,6 +36,17 @@ DROP RULE <replaceable class="PARAMETER">name</replaceable> ON <replaceable clas
36
36
<title>Parameters</title>
37
37
38
38
<variablelist>
39
+
40
+
<varlistentry>
41
+
<term><literal>IF EXISTS</literal></term>
42
+
<listitem>
43
+
<para>
44
+
Do not throw an error if the rule does not exist. A notice is issued
DROP TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table</replaceable> [ CASCADE | RESTRICT ]
23
+
DROP TRIGGER[ IF EXISTS ]<replaceable class="PARAMETER">name</replaceable> ON <replaceable class="PARAMETER">table</replaceable> [ CASCADE | RESTRICT ]
24
24
</synopsis>
25
25
</refsynopsisdiv>
26
26
@@ -38,6 +38,17 @@ DROP TRIGGER <replaceable class="PARAMETER">name</replaceable> ON <replaceable c
38
38
<title>Parameters</title>
39
39
40
40
<variablelist>
41
+
42
+
<varlistentry>
43
+
<term><literal>IF EXISTS</literal></term>
44
+
<listitem>
45
+
<para>
46
+
Do not throw an error if the trigger does not exist. A notice is issued