define a new cast NAME CREATE_CAST - define a new cast SYNOPSIS CREATE CAST ( source_type AS target_type ) WITH FUNCTION function_name [ ( argument_type [, ...]) ] [ AS ASSIGNMENT …close a cursor NAME CLOSE - close a cursor SYNOPSIS CLOSE { name | ALL } DESCRIPTION CLOSE frees the resources associated with an open cursor. After the cursor is closed, no subseq…wrapper for PostgreSQL client commands NAME pg_wrapper - wrapper for PostgreSQL client commands SYNOPSIS client-program [ --cluster version / cluster ] [...] ( client-program : psq…load a shared library file NAME LOAD - load a shared library file SYNOPSIS LOAD ' filename ' DESCRIPTION This command loads a shared library file into the PostgreSQL server's addre…copying strings and character sequences NAME stpcpy, strcpy, strcat, stpecpy, strtcpy, strlcpy, strlcat, stpncpy, strncpy, strncat - copying strings and character sequences SYNOPSI…optional parts of the POSIX standard NAME posixoptions - optional parts of the POSIX standard DESCRIPTION The POSIX standard (the information below is from POSIX.1-2001) describes …globbing pathnames NAME glob - globbing pathnames DESCRIPTION Long ago, in UNIX V6, there was a program /etc/glob that would expand wildcard patterns. Soon afterward this became a …define a new rewrite rule NAME CREATE_RULE - define a new rewrite rule SYNOPSIS CREATE [ OR REPLACE ] RULE name AS ON event TO table_name [ WHERE condition ] DO [ ALSO | INSTEAD ] …start a transaction block NAME BEGIN - start a transaction block SYNOPSIS BEGIN [ WORK | TRANSACTION ] [ transaction_mode [, ...] ] where transaction_mode is one of: ISOLATION LEVE…overview of system data types NAME system_data_types - overview of system data types DESCRIPTION siginfo_t Include : <signal.h> . Alternatively, <sys/wait.h> . typedef struct { int…create new rows in a table NAME INSERT - create new rows in a table SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] INSERT INTO table_name [ AS alias ] [ ( column_name [, ...] )…conditionally insert, update, or delete rows of a table NAME MERGE - conditionally insert, update, or delete rows of a table SYNOPSIS [ WITH with_query [, ...] ] MERGE INTO [ ONLY …compute a set of rows NAME VALUES - compute a set of rows SYNOPSIS VALUES ( expression [, ...] ) [, ...] [ ORDER BY sort_expression [ ASC | DESC | USING operator ] [, ...] ] [ LIMI…define a new table from the results of a query NAME CREATE_TABLE_AS - define a new table from the results of a query SYNOPSIS CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNL…change the definition of an index NAME ALTER_INDEX - change the definition of an index SYNOPSIS ALTER INDEX [ IF EXISTS ] name RENAME TO new_name ALTER INDEX [ IF EXISTS ] name SET…Writing and packaging system daemons NAME daemon - Writing and packaging system daemons DESCRIPTION A daemon is a service process that runs in the background and supervises the sys…TCP protocol NAME tcp - TCP protocol SYNOPSIS #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> tcp_socket = socket(AF_INET, SOCK_STREAM, 0); DESCRIPTION Thi…user environment NAME environ - user environment SYNOPSIS extern char ** environ ; DESCRIPTION The variable environ points to an array of pointers to strings called the "environmen…semantic markup language for formatting manual pages NAME mdoc — semantic markup language for formatting manual pages DESCRIPTION The mdoc language supports authoring of manual pag…Git command-line interface and conventions NAME gitcli - Git command-line interface and conventions SYNOPSIS gitcli DESCRIPTION This manual describes the convention used throughout…