1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00
Peter Eisentraut 71d60e2aa0 Add tg_updatedcols to TriggerData
This allows a trigger function to determine for an UPDATE trigger
which columns were actually updated.  This allows some optimizations
in generic trigger functions such as lo_manage and
tsvector_update_trigger.

Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://www.postgresql.org/message-id/flat/11c5f156-67a9-0fb5-8200-2a8018eb2e0c@2ndquadrant.com
2020-03-09 09:34:55 +01:00
..
2019-10-13 22:10:38 +02:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00
2019-10-25 20:39:41 +02:00
2019-10-25 20:39:41 +02:00
2020-02-10 08:34:43 +05:30
2019-10-25 20:39:41 +02:00
2020-02-26 13:05:30 -08:00
2020-02-26 13:05:30 -08:00
2020-02-26 13:05:30 -08:00
2018-10-11 11:43:56 -07:00
2019-09-08 10:27:29 +02:00
2019-10-25 20:39:41 +02:00
2019-09-08 10:27:29 +02:00
2018-06-20 16:06:03 +02:00
2019-10-25 20:39:41 +02:00
2019-06-09 11:25:56 +09:00
2019-07-01 12:50:55 -04:00
2019-07-05 08:34:54 +02:00
2019-09-08 10:27:29 +02:00
2019-10-25 20:39:41 +02:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00
2020-01-01 12:21:45 -05:00
2019-09-08 10:27:29 +02:00
2020-01-01 12:21:45 -05:00
2020-03-03 15:01:47 +09:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00
2019-10-25 20:39:41 +02:00
2019-10-25 20:39:41 +02:00
2019-08-13 08:40:17 +02:00
2019-03-29 13:36:24 +01:00
2019-07-01 12:50:55 -04:00
2019-07-01 12:50:55 -04:00
2019-09-08 10:27:29 +02:00
2020-02-10 09:31:18 +05:30
2019-09-08 10:27:29 +02:00
2019-08-13 08:40:17 +02:00
2019-09-08 10:27:29 +02:00
2019-03-27 23:10:23 +01:00
2020-03-09 09:34:55 +01:00
2019-09-08 10:27:29 +02:00
2020-01-09 10:59:07 -05:00
2019-09-08 10:27:29 +02:00
2019-09-08 10:27:29 +02:00

<!-- doc/src/sgml/README.links -->

Linking within DocBook documents can be confusing, so here is a summary:


Intra-document Linking
----------------------

<xref>
	use to get chapter/section number from the title of the target
	link, or xreflabel if defined at the target, or refentrytitle if target
        is a refentry;  has no close tag
	http://www.oasis-open.org/docbook/documentation/reference/html/xref.html

<link>
	use to supply text for the link, requires </link>
	http://www.oasis-open.org/docbook/documentation/reference/html/link.html

linkend=
	controls the target of the link/xref, required

endterm=
	for <xref>, allows the text of the link/xref to be taken from a
	different link target title


External Linking
----------------

<ulink>
	like <link>, but uses a URL (not a document target);  requires
	</ulink>; if no text is specified, the URL appears as the link
	text
	http://www.oasis-open.org/docbook/documentation/reference/html/ulink.html

url=
	used by <ulink> to specify the URL, required


Guidelines
----------

- For an internal link, if you want to supply text, use <link>, else
  <xref>.

- Specific nouns like GUC variables, SQL commands, and contrib modules
  usually have xreflabels.

- For an external link, use <ulink>, with or without link text.