overview of system data types NAME system_data_types - overview of system data types DESCRIPTION siginfo_t Include : <signal.h> . Alternativel...list of file suffixes NAME suffixes - list of file suffixes DESCRIPTION It is customary to indicate the contents of a file with the file suffix, which (typically) consists of a per…define a new data type NAME CREATE_TYPE - define a new data type SYNOPSIS CREATE TYPE name AS ( [ attribute_name data_type [ COLLATE collation ] [, ... ] ] ) CREATE TYPE name AS EN…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 …define a new operator NAME CREATE_OPERATOR - define a new operator SYNOPSIS CREATE OPERATOR name ( {FUNCTION|PROCEDURE} = function_name [, LEFTARG = left_type ] [, RIGHTARG = right…define a new function NAME CREATE_FUNCTION - define a new function SYNOPSIS CREATE [ OR REPLACE ] FUNCTION name ( [ [ argmode ] [ argname ] argtype [ { DEFAULT | = } default_expr ]…in-kernel key management and retention facility NAME keyrings - in-kernel key management and retention facility DESCRIPTION The Linux key-management facility is primarily a way for…conventions for naming terminal types NAME term - conventions for naming terminal types DESCRIPTION The environment variable TERM should normally contain the type name of the termi…define a new foreign table NAME CREATE_FOREIGN_TABLE - define a new foreign table SYNOPSIS CREATE FOREIGN TABLE [ IF NOT EXISTS ] table_name ( [ { column_name data_type [ OPTIONS (…sockets for local interprocess communication NAME unix - sockets for local interprocess communication SYNOPSIS #include <sys/socket.h> #include <sys/un.h> unix_socket = socket(AF_U…define a new aggregate function NAME CREATE_AGGREGATE - define a new aggregate function SYNOPSIS CREATE [ OR REPLACE ] AGGREGATE name ( [ argmode ] [ argname ] arg_data_type [ , ..…Linux VSOCK address family NAME vsock - Linux VSOCK address family SYNOPSIS #include <sys/socket.h> #include <linux/vm_sockets.h> stream_socket = socket(AF_VSOCK, SOCK_STREAM, 0); …define a new table NAME CREATE_TABLE - define a new table SYNOPSIS CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] table_name ( [ { column_nam…define a new domain NAME CREATE_DOMAIN - define a new domain SYNOPSIS CREATE DOMAIN name [ AS ] data_type [ COLLATE collation ] [ DEFAULT expression ] [ domain_constraint [ ... ] ]…eqn language reference for mandoc NAME eqn — eqn language reference for mandoc DESCRIPTION The eqn language is an equation-formatting language. It is used within mdoc(7) and man(7)…change the definition of a table NAME ALTER_TABLE - change the definition of a table SYNOPSIS ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action [, ... ] ALTER TABLE [ IF EXISTS …Linux socket interface NAME socket - Linux socket interface SYNOPSIS #include <sys/socket.h> sockfd = socket(int socket_family , int socket_type , int protocol ); DESCRIPTION This …define a new row-level security policy for a table NAME CREATE_POLICY - define a new row-level security policy for a table SYNOPSIS CREATE POLICY name ON table_name [ AS { PERMISSI…define a new schema NAME CREATE_SCHEMA - define a new schema SYNOPSIS CREATE SCHEMA schema_name [ AUTHORIZATION role_specification ] [ schema_element [ ... ] ] CREATE SCHEMA AUTHOR…define a new procedure NAME CREATE_PROCEDURE - define a new procedure SYNOPSIS CREATE [ OR REPLACE ] PROCEDURE name ( [ [ argmode ] [ argname ] argtype [ { DEFAULT | = } default_ex…