ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
INSERT INTO base_table(id) VALUES(1); -- ts will receive a NULL
INSERT INTO a_view(id) VALUES(2); -- ts will receive the current time
-</programlisting>
- </para>
+</programlisting></para>
</refsect1>
<refsect1>
CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
EXECUTE PROCEDURE abort_any_command();
-</programlisting>
- </para>
+</programlisting></para>
</refsect1>
<refsect1 id="sql-createeventtrigger-compatibility">
VALUES (1)
UNION ALL
SELECT n+1 FROM nums_1_100 WHERE n < 100;
-</programlisting>
- </para>
+</programlisting></para>
</refsect1>
<refsect1>
state:
<programlisting>
REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
-</programlisting>
- </para>
+</programlisting></para>
</refsect1>
<refsect1>
<literal>FROM</> item.)
</para>
- <para>
- <literal>LATERAL</literal> can also precede a function-call
+ <para><literal>LATERAL</literal> can also precede a function-call
<literal>FROM</> item, but in this case it is a noise word, because
the function expression can refer to earlier <literal>FROM</> items
in any case.