Indexes and ORDER BY
  • References/Database/PostgreSQL/Indexes

In addition to simply finding the rows to be returned by a query, an index may be able to deliver them in a specific sorted order. This allows a query's ORDER

2025-01-10 15:47:30
Table Expressions
  • References/Database/PostgreSQL/Queries

A table expression computes a table. The table expression contains a FROM clause that is optionally followed by

2025-01-10 15:47:30
Internals//GIN Indexes: Examples
  • References/Database/PostgreSQL/Internals/GIN Indexes

The PostgreSQL source distribution includes GIN operator classes for tsvector

2025-01-10 15:47:30
pg_lsn Type
  • References/Database/PostgreSQL/Data Types

The pg_lsn data type can be used to store LSN (Log Sequence Number) data which is a pointer to a location in the XLOG. This type is a representation

2025-01-10 15:47:30
BEGIN
  • References/Database/PostgreSQL/Commands

NameBEGIN -- start a transaction block Synopsis

2025-01-10 15:47:30
Catalogs: pg_policy
  • References/Database/PostgreSQL/Internals: Catalogs

The catalog pg_policy stores row level security policies for tables. A policy includes the kind of command that it applies to (possibly all

2025-01-10 15:47:30
Performance Tips: EXPLAIN
  • References/Database/PostgreSQL/Performance Tips

PostgreSQL devises a query plan for each query it receives. Choosing the right plan to match the query structure and

2025-01-10 15:47:30
Internals//GIN Indexes
  • References/Database/PostgreSQL/Internals/GIN Indexes

GIN stands for Generalized Inverted Index. GIN is designed for handling cases where the items to be indexed

2025-01-10 15:47:30
IMPORT FOREIGN SCHEMA
  • References/Database/PostgreSQL/Commands

NameIMPORT FOREIGN SCHEMA -- import table definitions from a foreign server Synopsis

2025-01-10 15:47:30
Catalogs: pg_opfamily
  • References/Database/PostgreSQL/Internals: Catalogs

The catalog pg_opfamily defines operator families. Each operator family is a collection of operators and associated support routines that implement

2025-01-10 15:47:30