From 293913568e6a7a86fd1479e1cff8e2ecb58d6568 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 15:44:03 +0200 Subject: Adding upstream version 16.2. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/spi-spi-register-relation.html | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 doc/src/sgml/html/spi-spi-register-relation.html (limited to 'doc/src/sgml/html/spi-spi-register-relation.html') diff --git a/doc/src/sgml/html/spi-spi-register-relation.html b/doc/src/sgml/html/spi-spi-register-relation.html new file mode 100644 index 0000000..a59cee1 --- /dev/null +++ b/doc/src/sgml/html/spi-spi-register-relation.html @@ -0,0 +1,29 @@ + +SPI_register_relation

SPI_register_relation

SPI_register_relation — make an ephemeral named relation available by name in SPI queries

Synopsis

+int SPI_register_relation(EphemeralNamedRelation enr)
+

Description

+ SPI_register_relation makes an ephemeral named + relation, with associated information, available to queries planned and + executed through the current SPI connection. +

Arguments

EphemeralNamedRelation enr

+ the ephemeral named relation registry entry +

Return Value

+ If the execution of the command was successful then the following + (nonnegative) value will be returned: + +

SPI_OK_REL_REGISTER

+ if the relation has been successfully registered by name +

+

+ On error, one of the following negative values is returned: + +

SPI_ERROR_ARGUMENT

+ if enr is NULL or its + name field is NULL +

SPI_ERROR_UNCONNECTED

+ if called from an unconnected C function +

SPI_ERROR_REL_DUPLICATE

+ if the name specified in the name field of + enr is already registered for this connection +

+

\ No newline at end of file -- cgit v1.2.3