PostgreSQL 正體中文使用手冊
PostgreSQL.TW官方使用手冊小島故事加入社團
14
14
  • 簡介
  • 前言
    • 1. 什麼是 PostgreSQL?
    • 2. PostgreSQL 沿革
    • 3. 慣例
    • 4. 其他參考資訊
    • 5. 問題回報指南
  • I. 新手教學
    • 1. 入門指南
      • 1.1. 安裝
      • 1.2. 基礎架構
      • 1.3. 建立一個資料庫
      • 1.4. 存取一個資料庫
    • 2. SQL 查詢語言
      • 2.1. 簡介
      • 2.2. 概念
      • 2.3. 創建一個新的資料表
      • 2.4. 資料列是資料表的組成單位
      • 2.5. 資料表的查詢
      • 2.6. 交叉查詢
      • 2.7. 彙總查詢
      • 2.8. 更新資料
      • 2.9. 刪除資料
    • 3. 先進功能
      • 3.1. 簡介
      • 3.2. 檢視表(View)
      • 3.3. 外部索引鍵
      • 3.4. 交易安全
      • 3.5. 窗函數
      • 3.6. 繼承
      • 3.7. 結論
  • II. SQL 查詢語言
    • 4. SQL 語法
      • 4.1. 語法結構
      • 4.2. 參數表示式
      • 4.3. 函數呼叫
    • 5. 定義資料結構
      • 5.1. 認識資料表
      • 5.2. 預設值
      • 5.3. Generated Columns
      • 5.4. 限制條件
      • 5.5. 系統欄位
      • 5.6. 表格變更
      • 5.7. 權限
      • 5.8. 資料列安全原則
      • 5.9. Schemas
      • 5.10. 繼承
      • 5.11. 分割資料表
      • 5.12. 外部資料
      • 5.13. 其他資料庫物件
      • 5.14. 相依性追蹤
    • 6. 資料處理
      • 6.1. 新增資料
      • 6.2. 更新資料
      • 6.3. 刪除資料
      • 6.4. 修改並回傳資料
    • 7. 資料查詢
      • 7.1. 概觀
      • 7.2. 資料表表示式
      • 7.3. 取得資料列表
      • 7.4. 合併查詢結果
      • 7.5. 資料排序
      • 7.6. LIMIT 和 OFFSET
      • 7.7. VALUES 列舉資料
      • 7.8. WITH Querys(Common Table Expressions)
    • 8. 資料型別
      • 8.1. 數字型別
      • 8.2. 貨幣型別
      • 8.3. 字串型別
      • 8.4. 位元組型別(bytea)
      • 8.5. 日期時間型別
      • 8.6. 布林型別
      • 8.7. 列舉型別
      • 8.8. 地理資訊型別
      • 8.9. 網路資訊型別
      • 8.10. 位元字串型別
      • 8.11. 全文檢索型別
      • 8.12. UUID 型別
      • 8.13. XML 型別
      • 8.14. JSON 型別
      • 8.15. 陣列
      • 8.16. 複合型別
      • 8.17. 範圍型別
      • 8.18. Domain Types
      • 8.19. 物件指標型別
      • 8.20. pg_lsn 型別
      • 8.21. 概念型別
    • 9. 函式及運算子
      • 9.1. 邏輯運算子
      • 9.2. 比較函式及運算子
      • 9.3. 數學函式及運算子
      • 9.4. 字串函式及運算子
      • 9.5. 位元字串函式及運算子
      • 9.6. 二元字串函式及運算子
      • 9.7. 特徵比對
      • 9.8. 型別轉換函式
      • 9.9 日期時間函式及運算子
      • 9.10. 列舉型別函式
      • 9.11. 地理資訊函式及運算子
      • 9.12. 網路位址函式及運算子
      • 9.13. 文字檢索函式及運算子
      • 9.14. UUID Functions
      • 9.15. XML 函式
      • 9.16. JSON 函式及運算子
      • 9.17. 序列函式
      • 9.18. 條件表示式
      • 9.19. 陣列函式及運算子
      • 9.20. 範圍函式及運算子
      • 9.21. 彙總函數
      • 9.22. Window 函式
      • 9.23. 子查詢
      • 9.24. 資料列與陣列的比較運算
      • 9.25. 集合回傳函式
      • 9.26. 系統資訊函數
      • 9.27. 系統管理函式
      • 9.28. 觸發函式
      • 9.29. 事件觸發函式
      • 9.30. Statistics Information Functions
    • 10. 型別轉換
      • 10.1. 概觀
      • 10.2. 運算子
      • 10.3. 函式
      • 10.4. 資料儲存轉換規則
      • 10.5. UNION、CASE 等相關結構
      • 10.6. SELECT 輸出規則
    • 11. 索引(Index)
      • 11.1. 簡介
      • 11.2. 索引型別
      • 11.3. 多欄位索引
      • 11.4. 索引與 ORDER BY
      • 11.5. 善用多個索引
      • 11.6. 唯一值索引
      • 11.7. 表示式索引
      • 11.8. 部份索引(partial index)
      • 11.9. Index-Only Scans and Covering Indexes
      • 11.10. 運算子物件及家族
      • 11.11. 索引與排序規則
      • 11.12. 檢查索引運用
    • 12. 全文檢索
      • 12.1. 簡介
      • 12.2. 查詢與索引
      • 12.3. 細部控制
      • 12.4. 延伸功能
      • 12.5. 斷詞
      • 12.6. 字典
      • 12.7. 組態範例
      • 12.8. 測試與除錯
      • 12.9. GIN 及 GiST 索引型別
      • 12.10. psql支援
      • 12.11. 功能限制
    • 13. 一致性管理(MVCC)
      • 13.1. 簡介
      • 13.2. 交易隔離
      • 13.3. 鎖定模式
      • 13.4. 在應用端檢視資料一致性
      • 13.5. 特別注意
      • 13.6. 鎖定與索引
    • 14. 效能技巧
      • 14.1. 善用 EXPLAIN
      • 14.2. 統計資訊
      • 14.3. 使用確切的 JOIN 方式
      • 14.4. 快速建立資料庫內容
      • 14.5. 風險性彈性設定
    • 15. 平行查詢
      • 15.1. 如何運作?
      • 15.2. 啓用時機?
      • 15.3. 平行查詢計畫
      • 15.4. 平行查詢的安全性
  • III. 系統管理
    • 16. Installation from Binaries
    • 17. 用原始碼安裝
      • 16.1. Short Version
      • 16.2. Requirements
      • 16.3. Getting The Source
      • 16.4. 安裝流程
      • 16.5. Post-Installation Setup
      • 16.6. Supported Platforms
      • 16.7. 平台相關的注意事項
    • 18. 用原始碼在 Windows 上安裝
      • 17.1. Building with Visual C++ or the Microsoft Windows SDK
    • 19. 服務配置與維運
      • 18.1. PostgreSQL 使用者帳號
      • 18.2. Creating a Database Cluster
      • 18.3. Starting the Database Server
      • 18.4. 核心資源管理
      • 18.5. Shutting Down the Server
      • 18.6. Upgrading a PostgreSQL Cluster
      • 18.7. Preventing Server Spoofing
      • 18.8. Encryption Options
      • 18.9. Secure TCP/IP Connections with SSL
      • 18.10. Secure TCP/IP Connections with GSSAPI Encryption
      • 18.11. Secure TCP/IP Connections with SSH Tunnels
      • 18.12. 在 Windows 註冊事件日誌
    • 20. 服務組態設定
      • 19.1. Setting Parameters
      • 19.2. File Locations
      • 19.3. 連線與認證
      • 19.4. 資源配置
      • 19.5. Write Ahead Log
      • 19.6. 複寫(Replication)
      • 19.7. 查詢規畫
      • 19.8. 錯誤回報與日誌記錄
      • 19.9. 執行階段統計資訊
      • 19.10. 自動資料庫清理
      • 20.11. 用戶端連線預設參數
      • 19.12. 交易鎖定管理
      • 19.13. 版本與平台的相容性
      • 19.14. Error Handling
      • 19.15. 預先配置的參數
      • 19.16. Customized Options
      • 19.17. Developer Options
      • 19.18. Short Options
    • 21. 使用者認證
      • 20.1. 設定檔:pg_hba.conf
      • 20.2. User Name Maps
      • 20.3. Authentication Methods
      • 20.4. Trust Authentication
      • 20.5. Password Authentication
      • 20.6. GSSAPI Authentication
      • 20.7. SSPI Authentication
      • 20.8. Ident Authentication
      • 20.9. Peer Authentication
      • 20.10. LDAP Authentication
      • 20.11. RADIUS Authentication
      • 20.12. Certificate Authentication
      • 20.13. PAM Authentication
    • 22. 資料庫角色
      • 22.1. Database Roles
      • 22.2. Role Attributes
      • 22.3. Role Membership
      • 22.4. 移除角色
      • 22.5. Default Roles
      • 22.6. Function Security
    • 23. Managing Databases
      • 22.1. Overview
      • 22.2. Creating a Database
      • 22.3. 樣版資料庫
      • 22.4. Database Configuration
      • 22.5. Destroying a Database
      • 22.6. Tablespaces
    • 24. 語系
      • 23.1. 語系支援
      • 23.2. Collation Support
      • 23.3. 字元集支援
    • 25. 例行性資料庫維護工作
      • 25.1. 例行性資料清理
      • 25.2. 定期重建索引
      • 25.3. Log 檔案維護
    • 26. 備份及還原
      • 25.1. SQL Dump
      • 25.2. 檔案系統層級備份
      • 25.3. Continuous Archiving and Point-in-Time Recovery (PITR)
    • 27. High Availability, Load Balancing, and Replication
      • 26.1. 比較不同的解決方案
      • 26.2. 日誌轉送備用伺服器 Log-Shipping Standby Servers
      • 26.3. Failover
      • 26.4. Alternative Method for Log Shipping
      • 26.5. Hot Standby
    • 28. 監控資料庫活動
      • 27.1. Standard Unix Tools
      • 27.2. 統計資訊收集器
      • 27.3. Viewing Locks
      • 27.4. Progress Reporting
      • 27.5. Dynamic Tracing
    • 29. 監控磁碟使用情況
      • 28.1. 瞭解磁碟使用情形
      • 28.2. 磁碟空間不足錯誤
    • 30. 高可靠度及預寫日誌
      • 29.1. 可靠度
      • 29.2. Write-Ahead Logging(WAL)
      • 29.3. Asynchronous Commit
      • 29.4. WAL Configuration
      • 29.5. WAL Internals
    • 31. 邏輯複寫(Logical Replication)
      • 30.1. 發佈(Publication)
      • 30.2. 訂閱(Subscription)
      • 30.3. 衝突處理
      • 30.4. 限制
      • 30.5. 架構
      • 30.6. 監控
      • 30.7. 安全性
      • 30.8. 系統設定
      • 30.9. 快速設定
    • 32. Just-in-Time Compilation(JIT)
      • 31.1. What is JIT compilation?
      • 31.2. When to JIT?
      • 31.3. Configuration
      • 31.4. Extensibility
    • 33. 迴歸測試
      • 32.1. Running the Tests
      • 32.2. Test Evaluation
      • 32.3. Variant Comparison Files
      • 32.4. TAP Tests
      • 32.5. Test Coverage Examination
  • IV. 用戶端介面
    • 33. libpq - C Library
      • 33.1. 資料庫連線控制函數
      • 33.2. 連線狀態函數
      • 33.3. Command Execution Functions
      • 33.4. Asynchronous Command Processing
      • 33.5. Retrieving Query Results Row-By-Row
      • 33.6. Canceling Queries in Progress
      • 33.7. The Fast-Path Interface
      • 33.8. Asynchronous Notification
      • 33.9. Functions Associated with the COPY Command
      • 33.10. Control Functions
      • 33.11. Miscellaneous Functions
      • 33.12. Notice Processing
      • 33.13. Event System
      • 33.14. 環境變數
      • 33.15. 密碼檔
      • 33.16. The Connection Service File
      • 33.17. LDAP Lookup of Connection Parameters
      • 33.18. SSL Support
      • 33.19. Behavior in Threaded Programs
      • 33.20. Building libpq Programs
      • 33.21. Example Programs
    • 34. Large Objects
      • 35.1. Introduction
      • 35.2. Implementation Features
      • 35.3. Client Interfaces
      • 35.4. Server-side Functions
      • 35.5. Example Program
    • 35. ECPG - Embedded SQL in C
      • 35.1. The Concept
      • 35.2. Managing Database Connections
      • 35.3. Running SQL Commands
      • 35.4. Using Host Variables
      • 35.5. Dynamic SQL
      • 35.6. pgtypes Library
      • 35.7. Using Descriptor Areas
      • 35.8. Error Handling
      • 35.9. Preprocessor Directives
      • 35.10. Processing Embedded SQL Programs
      • 35.11. Library Functions
      • 35.12. Large Objects
      • 35.13. C++ Applications
      • 35.14. Embedded SQL Commands
      • 35.15. Informix Compatibility Mode
      • 35.16. Internals
    • 36. The Information Schema
      • 36.1. The Schema
      • 36.2. Data Types
      • 36.3. information_schema_catalog_name
      • 36.4. administrable_role_authorizations
      • 36.5. applicable_roles
      • 36.6. attributes
      • 36.7. character_sets
      • 36.8. check_constraint_routine_usage
      • 36.9. check_constraints
      • 36.10. collations
      • 36.11. collation_character_set_applicability
      • 36.12. column_domain_usage
      • 36.13. column_options
      • 36.14. column_privileges
      • 36.16. column_udt_usage
      • 36.17. columns
      • 36.18. constraint_column_usage
      • 37.18. constraint_table_usage
      • 37.19. data_type_privileges
      • 37.20. domain_constraints
      • 37.21. domain_udt_usage
      • 37.22. domains
      • 37.23. element_types
      • 37.24. enabled_roles
      • 37.25. foreign_data_wrapper_options
      • 37.26. foreign_data_wrappers
      • 37.27. foreign_server_options
      • 37.28. foreign_servers
      • 37.29. foreign_table_options
      • 37.30. foreign_tables
      • 36.32. key_column_usage
      • 36.33. parameters
      • 36.34. referential_constraints
      • 37.34. role_column_grants
      • 37.35. role_routine_grants
      • 36.37. role_table_grants
      • 37.37. role_udt_grants
      • 37.38. role_usage_grants
      • 37.39. routine_privileges
      • 37.40. routines
      • 36.42. schemata
      • 37.42. sequences
      • 37.43. sql_features
      • 37.44. sql_implementation_info
      • 37.45. sql_languages
      • 37.46. sql_packages
      • 37.47. sql_parts
      • 37.48. sql_sizing
      • 37.49. sql_sizing_profiles
      • 36.51. table_constraints
      • 36.49. table_privileges
      • 37.52. tables
      • 37.53. transforms
      • 37.54. triggered_update_columns
      • 37.55. triggers
      • 37.56. udt_privileges
      • 37.57. usage_privileges
      • 37.58. user_defined_types
      • 37.59. user_mapping_options
      • 37.60. user_mappings
      • 37.61. view_column_usage
      • 37.62. view_routine_usage
      • 37.63. view_table_usage
      • 37.64. views
  • V. 資料庫程式設計
    • 38. SQL 延伸功能
      • 38.1. How Extensibility Works
      • 37.2. The PostgreSQL Type System
      • 37.3. 使用者自訂函數
      • 37.4. User-defined Procedures
      • 37.5. Query Language (SQL) Functions
      • 37.6. Function Overloading
      • 37.7. 函數易變性類別
      • 37.8. Procedural Language Functions
      • 37.9. Internal Functions
      • 37.10. C-Language Functions
      • 37.11. Function Optimization Information
      • 37.12. User-defined Aggregates
      • 37.13. User-defined Types
      • 37.14. User-defined Operators
      • 37.15. Operator Optimization Information
      • 38.16. Interfacing Extensions To Indexes
      • 37.17. 封裝相關物件到延伸功能中
      • 37.18. Extension Building Infrastructure
    • 38. Triggers
      • 38.1. Overview of Trigger Behavior
      • 38.2. Visibility of Data Changes
      • 38.3. Writing Trigger Functions in C
      • 38.4. A Complete Trigger Example
    • 39. Event Triggers (事件觸發)
      • 39.1. Overview of Event Trigger Behavior
      • 39.2. Event Trigger Firing Matrix
      • 39.3. Writing Event Trigger Functions in C
      • 39.4. A Complete Event Trigger Example
    • 40. 規則系統
      • 40.1. The Query Tree
      • 40.2. Views and the Rule System
      • 40.3. Materialized Views
      • 40.4. Rules on INSERT, UPDATE, and DELETE
      • 40.5. 規則及權限
      • 40.6. Rules and Command Status
      • 40.7. Rules Versus Triggers
    • 41. Procedural Languages(程序語言)
      • 41.1. Installing Procedural Languages
      • 41.2. Structure of PL/pgSQL
      • 41.5. Basic Statements
      • 41.11. 深入了解 PL/pgSQL
    • 42. PL/pgSQL - SQL Procedural Language
      • 42.1. Overview
      • 42.2. Structure of PL/pgSQL
      • 42.3. Declarations
      • 42.4. Expressions
      • 42.5. 基本語法
      • 42.6. Control Structures
    • 43. PL/Tcl - Tcl Procedural Language
    • 44. PL/Perl — Perl Procedural Language
    • 45. PL/Python - Python Procedural Language
      • 45.1. Python 2 vs. Python 3
      • 45.2. PL/Python Functions
      • 45.3. Data Values
      • 45.4. Sharing Data
      • 45.5. Anonymous Code Blocks
      • 45.6. Trigger Functions
      • 45.7. Database Access
      • 45.8. Explicit Subtransactions
      • 45.9. Transaction Management
      • 45.10. Utility Functions
      • 45.11. Environment Variables
    • 46. Server Programming Interface
    • 47. Background Worker Processes
    • 48. Logical Decoding
      • 48.1. Logical Decoding Examples
      • 48.2. Logical Decoding Concepts
      • 48.3. Streaming Replication Protocol Interface
      • 48.4. Logical Decoding SQL Interface
      • 48.5. System Catalogs Related to Logical Decoding
      • 48.6. Logical Decoding Output Plugins
      • 48.7. Logical Decoding Output Writers
      • 48.8. Synchronous Replication Support for Logical Decoding
    • 49. Replication Progress Tracking
  • VI. 參考資訊
    • I. SQL 指令
      • ALTER DATABASE
      • ALTER DEFAULT PRIVILEGES
      • ALTER EXTENSION
      • ALTER FUNCTION
      • ALTER INDEX
      • ALTER LANGUAGE
      • ALTER MATERIALIZED VIEW
      • ALTER POLICY
      • ALTER PUBLICATION
      • ALTER ROLE
      • ALTER RULE
      • ALTER SCHEMA
      • ALTER SEQUENCE
      • ALTER STATISTICS
      • ALTER SUBSCRIPTION
      • ALTER SYSTEM
      • ALTER TABLE
      • ALTER TABLESPACE
      • ALTER TRIGGER
      • ALTER TYPE
      • ALTER USER
      • ALTER VIEW
      • ANALYZE
      • CLUSTER
      • COMMENT
      • COMMIT PREPARED
      • COPY
      • CREATE ACCESS METHOD
      • CREATE CAST
      • CREATE DATABASE
      • CREATE EVENT TRIGGER
      • CREATE EXTENSION
      • CREATE FOREIGN TABLE
      • CREATE FOREIGN DATA WRAPPER
      • CREATE FUNCTION
      • CREATE INDEX
      • CREATE LANGUAGE
      • CREATE MATERIALIZED VIEW
      • CREATE DOMAIN
      • CREATE POLICY
      • CREATE PROCEDURE
      • CREATE PUBLICATION
      • CREATE ROLE
      • CREATE RULE
      • CREATE SCHEMA
      • CREATE SEQUENCE
      • CREATE SERVER
      • CREATE STATISTICS
      • CREATE SUBSCRIPTION
      • CREATE TABLE
      • CREATE TABLE AS
      • CREATE TABLESPACE
      • CREATE TRANSFORM
      • CREATE TRIGGER
      • CREATE TYPE
      • CREATE USER
      • CREATE USER MAPPING
      • CREATE VIEW
      • DEALLOCATE
      • DELETE
      • DO
      • DROP ACCESS METHOD
      • DROP DATABASE
      • DROP EXTENSION
      • DROP FUNCTION
      • DROP INDEX
      • DROP LANGUAGE
      • DROP MATERIALIZED VIEW
      • DROP OWNED
      • DROP POLICY
      • DROP PUBLICATION
      • DROP ROLE
      • DROP RULE
      • DROP SCHEMA
      • DROP SEQUENCE
      • DROP STATISTICS
      • DROP SUBSCRIPTION
      • DROP TABLE
      • DROP TABLESPACE
      • DROP TRANSFORM
      • DROP TRIGGER
      • DROP TYPE
      • DROP USER
      • DROP VIEW
      • EXECUTE
      • EXPLAIN
      • GRANT
      • IMPORT FOREIGN SCHEMA
      • INSERT
      • LISTEN
      • LOAD
      • NOTIFY
      • PREPARE
      • PREPARE TRANSACTION
      • REASSIGN OWNED
      • REFRESH MATERIALIZED VIEW
      • REINDEX
      • RESET
      • REVOKE
      • ROLLBACK PREPARED
      • SECURITY LABEL
      • SELECT
      • SELECT INTO
      • SET
      • SET CONSTRAINTS
      • SET ROLE
      • SET SESSION AUTHORIZATION
      • SET TRANSACTION
      • SHOW
      • TRUNCATE
      • UNLISTEN
      • UPDATE
      • VACUUM
      • VALUES
    • II. PostgreSQL 用戶端工具
      • createdb
      • createuser
      • dropdb
      • dropuser
      • oid2name
      • pgbench
      • pg_basebackup
      • pg_dump
      • pg_dumpall
      • pg_isready
      • pg_receivewal
      • pg_recvlogical
      • pg_restore
      • pg_verifybackup
      • psql
      • vacuumdb
    • III. PostgreSQL 伺服器應用程式
      • initdb
      • pg_archivecleanup
      • pg_ctl
      • pg_standby
      • pg_test_timing
      • pg_upgrade
      • postgres
  • VII. 資料庫進階
    • 50. PostgreSQL 的內部架構
      • 50.1. 處理查詢語句的流程
      • 50.2. How Connections Are Established
      • 50.3. The Parser Stage
      • 50.4. The PostgreSQL Rule System
      • 50.5. Planner/Optimizer
      • 50.6. Executor
    • 51. 系統目錄
      • 51.3. pg_am
      • 51.7. pg_attribute
      • 51.8. pg_authid
      • 51.9. pg_auth_members
      • 51.10. pg_cast
      • 51.11 pg_class
      • 51.12. pg_collation
      • 51.13. pg_constraint
      • 51.15 pg_database
      • 51.21. pg_event_trigger
      • 51.22. pg_extension
      • 51.26 pg_index
      • 51.29. pg_language
      • 51.32. pg_namespace
      • 51.33. pg_opclass
      • 51.38. pg_policy
      • 51.39. pg_proc
      • 51.44. pg_rewrite
      • 51.49. pg_statistic
      • 51.50. pg_statistic_ext
      • 51.52. pg_subscription
      • 51.53. pg_subscription_rel
      • 51.54. pg_tablespace
      • 51.56. pg_trigger
      • 51.62. pg_type
      • 51.66. pg_available_extensions
      • 51.67. pg_available_extension_versions
      • 51.71. pg_hba_file_rules
      • 51.72. pg_indexes
      • 51.73. pg_locks
      • 51.77. pg_prepared_xacts
      • 51.79. pg_replication_origin_status
      • 51.80. pg_replication_slots
      • 51.82 pg_roles
      • 51.85. pg_settings
      • 51.87. pg_shmem_allocations
      • 51.88. pg_stats
      • 51.90. pg_tables
      • 51.93. pg_user
      • 51.95. pg_views
    • 52. Frontend/Backend Protocol
      • 52.1. Overview
      • 52.2. Message Flow
      • 52.3. SASL Authentication
      • 52.4. Streaming Replication Protocol
      • 52.5. Logical Streaming Replication Protocol
      • 52.6. Message Data Types
      • 52.7. Message Formats
      • 52.8. Error and Notice Message Fields
      • 52.9. Logical Replication Message Formats
      • 52.10. Summary of Changes since Protocol 2.0
    • 53. PostgreSQL 程式撰寫慣例
      • 53.1. Formatting
      • 53.2. Reporting Errors Within the Server
      • 53.3. Error Message Style Guide
      • 53.4. Miscellaneous Coding Conventions
    • 54. Native Language Support
      • 54.1. For the Translator
      • 54.2. For the Programmer
    • 55. 撰寫程序語言的處理程序
    • 56. Writing a Foreign Data Wrapper
      • 56.1. Foreign Data Wrapper Functions
      • 56.2. Foreign Data Wrapper Callback Routines
      • 56.3. Foreign Data Wrapper Helper Functions
      • 56.4. Foreign Data Wrapper Query Planning
      • 56.5. Row Locking in Foreign Data Wrappers
    • 59. Genetic Query Optimizer
      • 59.1. Query Handling as a Complex Optimization Problem
      • 59.2. Genetic Algorithms
      • 59.3. Genetic Query Optimization (GEQO) in PostgreSQL
      • 59.4. Further Reading
    • 60. Table Access Method Interface Definition
    • 61. Index Access Method Interface Definition
    • 62. Generic WAL Records
    • 64. B-Tree Indexes
      • 64.1. Introduction
      • 64.2. Behavior of B-Tree Operator Classes
      • 64.3. B-Tree Support Functions
      • 64.4. Implementation
    • 64. GiST Indexes
      • 64.1. Introduction
      • 64.2. Built-in Operator Classes
      • 64.3. Extensibility
      • 64.4. Implementation
      • 64.5. Examples
    • 65. SP-GiST Indexes
      • 65.1. Introduction
      • 65.2. Built-in Operator Classes
      • 65.3. Extensibility
      • 65.4. Implementation
      • 65.5. Examples
    • 66. GIN 索引
      • 66.1. 簡介
      • 66.2. 內建運算子類
      • 66.3. 延伸介面
      • 66.4. 實作說明
      • 66.5. GIN 小巧技
      • 66.6. 限制
      • 66.7. 範例
    • 67. BRIN Indexes
      • 67.1. Introduction
      • 67.2. Built-in Operator Classes
      • 67.3. Extensibility
    • 68. 資料庫實體儲存格式
      • 68.1. Database File Layout
      • 68.2. TOAST
      • 68.3. Free Space Map
      • 68.4 可視性映射表(Visibility Map)
      • 68.5. The Initialization Fork
      • 68.6. Database Page Layout
    • 69. System Catalog Declarations and Initial Contents
    • 70. 查詢計畫如何使用統計資訊
      • 70.1. Row Estimation Examples
      • 70.2. 多元統計資訊範例
      • 70.3. Planner Statistics and Security
    • 71. Backup Manifest Format
  • VIII. 附錄
    • A. PostgreSQL 錯誤代碼
    • B. 日期時間格式支援
      • B.1. 日期時間解譯流程
      • B.2. 日期時間慣用字
      • B.3. 日期時間設定檔
      • B.4. 日期時間的沿革
    • C. SQL 關鍵字
    • D. SQL 相容性
      • D.1. Supported Features
      • D.2. Unsupported Features
      • D.3. XML Limits and Conformance to SQL/XML
    • E. 版本資訊
      • E.1. Release 14
    • F. 延伸支援模組
      • F.1. adminpack
      • F.2. amcheck
      • F.3. auth_delay
      • F.4. auto_explain
      • F.5. bloom
      • F.6. btree_gin
      • F.10. dblink
        • dblink_connect
        • dblink_connect_u
        • dblink_disconnect
        • dblink
        • dblink_exec
        • dblink_open
        • dblink_fetch
        • dblink_close
        • dblink_get_connections
        • dblink_error_message
        • dblink_send_query
        • dblink_is_busy
        • dblink_get_notify
        • dblink_get_result
        • dblink_cancel_query
        • dblink_get_pkey
        • dblink_build_sql_insert
        • dblink_build_sql_delete
        • dblink_build_sql_update
      • F.13. earthdistance
      • F.14. file_fdw
      • F.16. hstore
      • F.24. pg_buffercache
      • F.29. pg_stat_statements
      • F.30. pgstattuple
      • F.31. pg_trgm
      • F.32. pg_visibility
      • F.33. postgres_fdw
      • F.35. sepgsql
      • F.38. tablefunc
      • F.40. test_decoding
      • F.41. tsm_system_rows
      • F.42. tsm_system_time
      • F.44. uuid-ossp
    • G. Additional Supplied Programs
      • G.1. Client Applications
        • oid2name
        • vacuumlo
      • G.2. Server Applications
        • pg_standby
    • H. 外部專案
      • H.1. 用戶端介面
      • H.2. Administration Tools
      • H.3. Procedural Languages
      • H.4. Extensions
    • I. The Source Code Repository
      • I.1. Getting The Source via Git
    • J. 文件取得
    • K. PostgreSQL Limits
    • L. 縮寫字
    • M. Glossary
    • N. 色彩支援
      • N.1. When Color is Used
      • N.2. Configuring the Colors
  • 參考書目
Powered by GitBook
On this page
  • E.1.1. Overview
  • E.1.2. Migration to Version 14
  • E.1.3. Changes
  • E.1.3.1. Server
  • E.1.3.2. Streaming Replication And Recovery
  • E.1.3.3. SELECT, INSERT
  • E.1.3.4. Utility Commands
  • E.1.3.5. Data Types
  • E.1.3.6. Functions
  • E.1.3.7. PL/PgSQL
  • E.1.3.8. Client Interfaces
  • E.1.3.9. Client Applications
  • E.1.3.9.1. psql
  • E.1.3.10. Server Applications
  • E.1.3.11. Documentation
  • E.1.3.12. Source Code
  • E.1.3.13. Additional Modules
  • E.1.4. Acknowledgments

Was this helpful?

Edit on GitHub
Export as PDF
  1. VIII. 附錄
  2. E. 版本資訊

E.1. Release 14

PreviousE. 版本資訊NextF. 延伸支援模組

Last updated 3 years ago

Was this helpful?

**Release date: **2021-09-30

E.1.1. Overview

PostgreSQL 14 contains many new features and enhancements, including:

  • Stored procedures can now return data via OUT parameters.

  • The SQL-standard SEARCH and CYCLE options for common table expressions have been implemented.

  • Subscripting can now be applied to any data type for which it is a useful notation, not only arrays. In this release, the jsonb and hstore types have gained subscripting operators.

  • Range types have been extended by adding multiranges, allowing representation of noncontiguous data ranges.

  • Numerous performance improvements have been made for parallel queries, heavily-concurrent workloads, partitioned tables, logical replication, and vacuuming.

  • B-tree index updates are managed more efficiently, reducing index bloat.

  • VACUUM automatically becomes more aggressive, and skips inessential cleanup, if the database starts to approach a transaction ID wraparound condition.

  • Extended statistics can now be collected on expressions, allowing better planning results for complex queries.

  • libpq now has the ability to pipeline multiple queries, which can boost throughput over high-latency connections.

The above items and other new features of PostgreSQL 14 are explained in more detail in the sections below.

E.1.2. Migration to Version 14

A dump/restore using or use of or logical replication is required for those wishing to migrate data from any previous release. See for general information on migrating to new major releases.

Version 14 contains a number of changes that may affect compatibility with previous releases. Observe the following incompatibilities:

  • User-defined objects that reference certain built-in array functions along with their argument types must be recreated (Tom Lane)

  • The more consistently named <@ and @> have been recommended for many years.

  • Certain discarded tokens, like underscore, caused the output of these functions to produce incorrect tsquery output, e.g., both websearch_to_tsquery('"pg_class pg"') and to_tsquery('pg_class <-> pg') used to output ( 'pg' & 'class' ) <-> 'pg', but now both output 'pg' <-> 'class' <-> 'pg'.

  • Previously, quoted text that contained multiple adjacent discarded tokens was treated as multiple tokens, causing incorrect tsquery output, e.g., websearch_to_tsquery('"aaa: bbb"') used to output 'aaa' <2> 'bbb', but now outputs 'aaa' <-> 'bbb'.

  • This avoids loss-of-precision issues in some usages. The old behavior can still be obtained by using the old underlying function date_part().

    Also, EXTRACT(date) now throws an error for units that are not part of the date data type.

  • Previously NaN was returned.

  • Previously such attribute numbers returned an invalid-column error.

  • Previously window frame clauses like 'inf' PRECEDING AND 'inf' FOLLOWING returned incorrect results.

  • Remove factorial operators ! and !!, as well as function numeric_fac() (Mark Dilger)

  • Disallow factorial() of negative numbers (Peter Eisentraut)

    Previously such cases returned 1.

  • pg_dump and pg_upgrade will warn if postfix operators are being dumped.

  • Previously they did not match newlines in this mode, but that disagrees with the behavior of other common regular expression engines. [^[:digit:]] or [^[:word:]] can be used to get the old behavior.

  • For example, in (^\d+).*\1, the ^ constraint should be applied at the start of the string, but not when matching \1.

  • Disallow \w as a range start or end in regular expression character classes (Tom Lane)

    This previously was allowed but produced unexpected results.

  • Previously it was md5. All new passwords will be stored as SHA256 unless this server setting is changed or the password is specified in MD5 format. Also, the legacy (and undocumented) Boolean-like values which were previously synonyms for md5 are no longer accepted.

  • Remove server parameter vacuum_cleanup_index_scale_factor (Peter Geoghegan)

    This setting was ignored starting in PostgreSQL version 13.3.

  • Remove server parameter operator_precedence_warning (Tom Lane)

    This setting was used for warning applications about PostgreSQL 9.5 changes.

  • Values 1/0/no-verify are no longer supported; only the strings verify-ca and verify-full can be used. Also, disallow verify-ca if cert authentication is enabled since cert requires verify-full checking.

  • This was already disabled by default in previous PostgreSQL releases, and most modern OpenSSL and TLS versions no longer support it.

  • This was last used as the default in PostgreSQL 7.3 (released in 2002).

  • Previously 'abc''def' was passed to the server as 'abc'def', and "abc""def" was passed as "abc"def", causing syntax errors.

  • Previously a full GiST index scan was required, so just avoid that and scan the heap, which is faster. Indexes created for this purpose should be removed.

  • Remove contrib program pg_standby (Justin Pryzby)

  • Negative values produced undesirable results.

E.1.3. Changes

Below you will find a detailed account of the changes between PostgreSQL 14 and the previous major release.

E.1.3.1. Server

  • These non-login roles can be used to give read or write permission to all tables, views, and sequences.

  • This is especially useful in template databases.

  • Remove temporary files after backend crashes (Euler Taveira)

  • Allow long-running queries to be canceled if the client disconnects (Sergey Cherkashin, Thomas Munro)

  • Allow wide tuples to be always added to almost-empty heap pages (John Naylor, Floris van Nee)

  • Add Server Name Indication (SNI) in SSL connection packets (Peter Eisentraut)

E.1.3.1.1. Vacuuming

  • Allow vacuum to skip index vacuuming when the number of removable index entries is insignificant (Masahiko Sawada, Peter Geoghegan)

  • Allow vacuum to more eagerly add deleted btree pages to the free space map (Peter Geoghegan)

    Previously vacuum could only add pages to the free space map that were marked as deleted by previous vacuums.

  • Allow vacuum to reclaim space used by unused trailing heap line pointers (Matthias van de Meent, Peter Geoghegan)

  • Allow vacuum to be more aggressive in removing dead rows during minimal-locking index operations (Álvaro Herrera)

    Specifically, CREATE INDEX CONCURRENTLY and REINDEX CONCURRENTLY no longer limit the dead row removal of other relations.

  • Speed up vacuuming of databases with many relations (Tatsuhito Kasahara)

  • Add ability to skip vacuuming of TOAST tables (Nathan Bossart)

  • Cause vacuum operations to be more aggressive if the table is near xid or multixact wraparound (Masahiko Sawada, Peter Geoghegan)

  • Increase warning time and hard limit before transaction id and multi-transaction wraparound (Noah Misch)

    This should reduce the possibility of failures that occur without having issued warnings about wraparound.

E.1.3.1.2. Partitioning

  • Improve the performance of updates and deletes on partitioned tables with many partitions (Amit Langote, Tom Lane)

    This change greatly reduces the planner's overhead for such cases, and also allows updates/deletes on partitioned tables to use execution-time partition pruning.

  • The syntax is ALTER TABLE ... DETACH PARTITION ... CONCURRENTLY, and FINALIZE.

  • Ignore COLLATE clauses in partition boundary values (Tom Lane)

    Previously any such clause had to match the collation of the partition key; but it's more consistent to consider that it's automatically coerced to the collation of the partition key.

E.1.3.1.3. Indexes

  • This is particularly helpful for reducing index bloat on tables whose indexed columns are frequently updated.

  • This is useful if there are groups of values in each page range.

  • Allow BRIN indexes to use bloom filters (Tomas Vondra)

    This allows BRIN indexes to be used effectively with data that is not well-localized in the heap.

  • Presorting happens automatically and allows for faster index creation and smaller indexes.

E.1.3.1.4. Optimizer

  • Allow hash lookup for IN clauses with many constants (James Coleman, David Rowley)

    Previously the code always sequentially scanned the list of values.

  • Allow extended statistics on expressions (Tomas Vondra)

  • Previously a sequential scan was required for non-equality TID specifications.

  • Previously, if the object already existed, EXPLAIN would fail.

E.1.3.1.5. General Performance

  • This also improves performance when there are many idle sessions.

  • Add executor method to memoize results from the inner side of a nested-loop join (David Rowley)

  • Improve the I/O performance of parallel sequential scans (Thomas Munro, David Rowley)

  • Dramatically improve Unicode normalization (John Naylor)

E.1.3.1.6. Monitoring

  • A query id computed by an extension will also be displayed.

E.1.3.1.7. System Views

  • Make the archiver process visible in pg_stat_activity (Kyotaro Horiguchi)

E.1.3.1.8. Authentication

  • Allow an SSL certificate's distinguished name (DN) to be matched for client certificate authentication (Andrew Dunstan)

  • A backslash at the end of a line allows record contents to be continued on the next line.

  • Allow the specification of a certificate revocation list (CRL) directory (Kyotaro Horiguchi)

  • Allow passwords of an arbitrary length (Tom Lane, Nathan Bossart)

E.1.3.1.9. Server Configuration

  • The previous default was 0.5.

  • Previously all the paths had to be in a single quoted string.

  • Allow startup allocation of dynamic shared memory (Thomas Munro)

E.1.3.2. Streaming Replication And Recovery

  • Pause recovery on a hot standby server if the primary changes its parameters in a way that prevents replay on the standby (Peter Eisentraut)

    Previously the standby would shut down immediately.

  • This allows clients to easily detect whether they are connected to a hot standby server.

  • Speed truncation of small tables during recovery on clusters with a large number of shared buffers (Kirk Jamison)

  • Allow file system sync at the start of crash recovery on Linux (Thomas Munro)

  • Previously these functions could only be executed by superusers, and this is still the default.

E.1.3.2.1. Logical Replication

  • Allow logical replication to stream long in-progress transactions to subscribers (Dilip Kumar, Amit Kapila, Ajin Cherian, Tomas Vondra, Nikhil Sontakke, Stas Kelvich)

  • Enhance the logical replication API to allow streaming large in-progress transactions (Tomas Vondra, Dilip Kumar, Amit Kapila)

  • Allow multiple transactions during table sync in logical replication (Peter Smith, Amit Kapila, and Takamichi Osumi)

  • Immediately WAL-log subtransaction and top-level XID association (Tomas Vondra, Dilip Kumar, Amit Kapila)

    This is useful for logical decoding.

  • Enhance logical decoding APIs to handle two-phase commits (Ajin Cherian, Amit Kapila, Nikhil Sontakke, Stas Kelvich)

  • Generate WAL invalidation messages during command completion when using logical replication (Dilip Kumar, Tomas Vondra, Amit Kapila)

    When logical replication is disabled, WAL invalidation messages are generated at transaction completion. This allows logical streaming of in-progress transactions.

  • Allow logical decoding to more efficiently process cache invalidation messages (Dilip Kumar)

  • Allow control over whether logical decoding messages are sent to the replication stream (David Pirotte, Euler Taveira)

  • Allow logical replication subscriptions to use binary transfer mode (Dave Cramer)

    This is faster than text mode, but slightly less robust.

  • Allow logical decoding to be filtered by xid (Markus Wanner)

E.1.3.3. SELECT, INSERT

  • Reduce the number of keywords that can't be used as column labels without AS (Mark Dilger)

    There are now 90% fewer restricted keywords.

  • Allow an alias to be specified for JOIN's USING clause (Peter Eisentraut)

    The alias is created by writing AS after the USING clause. It can be used as a table qualification for the merged USING columns.

  • Allow DISTINCT to be added to GROUP BY to remove duplicate GROUPING SET combinations (Vik Fearing)

    For example, GROUP BY CUBE (a,b), CUBE (b,c) will generate duplicate grouping combinations without DISTINCT.

  • Properly handle DEFAULT entries in multi-row VALUES lists in INSERT (Dean Rasheed)

    Such cases used to throw an error.

  • The same results could be accomplished using existing syntax, but much less conveniently.

  • Allow column names in the WHERE clause of ON CONFLICT to be table-qualified (Tom Lane)

    Only the target table can be referenced, however.

E.1.3.4. Utility Commands

  • Allow REINDEX to process all child tables or indexes of a partitioned relation (Justin Pryzby, Michael Paquier)

  • Allow index commands using CONCURRENTLY to avoid waiting for the completion of other operations using CONCURRENTLY (Álvaro Herrera)

  • This allows pre-existing triggers to be conditionally replaced.

  • Allow publications to be more easily added to and removed from a subscription (Japin Li)

E.1.3.5. Data Types

  • Previously subscript handling was hard-coded into the server, so that subscripting could only be applied to array types. This change allows subscript notation to be used to extract or assign portions of a value of any type for which the concept makes sense.

  • JSONB subscripting can be used to extract and assign to portions of JSONB documents.

  • These are like range data types, but they allow the specification of multiple, ordered, non-overlapping ranges. An associated multirange type is automatically created for every range type.

  • The previous limit was 4K bytes. Also remove function t_readline().

  • Floating-point data types already supported these.

  • Previously these were called >^ and <^, but that naming is inconsistent with other geometric data types. The old names remain available, but may someday be removed.

  • Create composite array types for system catalogs (Wenjing Zeng)

    User-defined relations have long had composite types associated with them, and also array types over those composite types. System catalogs now do as well. This change also fixes an inconsistency that creating a user-defined table in single-user mode would fail to create a composite array type.

E.1.3.6. Functions

  • Previously only string-literal function bodies were supported. When writing a function or procedure in SQL-standard syntax, the body is parsed immediately and stored as a parse tree. This allows better tracking of function dependencies, and can have security benefits.

  • Allow some array functions to operate on a mix of compatible data types (Tom Lane)

  • This could already be done with array slices, but less easily.

  • Negative values start from the last field and count backward.

  • This is similar to how Unicode can be specified in literal strings.

  • This function “bins” input timestamps, grouping them into intervals of a uniform length aligned with a specified origin.

  • Negative values are interpreted as BC years.

  • The new SQL-standard syntax is SUBSTRING(text SIMILAR pattern ESCAPE escapechar). The previous standard syntax was SUBSTRING(text FROM pattern FOR escapechar), which is still accepted by PostgreSQL.

  • Previously such operations produced underflow errors.

  • Make floating-point division of NaN by zero return NaN (Tom Lane)

    Previously this returned an error.

  • Previously they often returned underflow errors.

  • Improve the accuracy of geometric computations involving infinity (Tom Lane)

  • Mark built-in type coercion functions as leakproof where possible (Tom Lane)

    This allows more use of functions that require type conversion in security-sensitive situations.

E.1.3.7. PL/PgSQL

  • This change allows assignment to array slices and nested record fields.

E.1.3.8. Client Interfaces

  • This allows multiple queries to be sent, only waiting for completion when a specific synchronization message is sent.

  • The new options are read-only, primary, standby, and prefer-standby.

  • Allow an ECPG SQL identifier to be linked to a specific connection (Hayato Kuroda)

E.1.3.9. Client Applications

  • The options are --no-index-cleanup and --no-truncate.

  • This is controlled by option --extension.

  • Include disconnection times in the reconnection overhead measured by pgbench with -C (Yugo Nagata)

  • Allow multiple verbose option specifications (-v) to increase the logging verbosity (Tom Lane)

E.1.3.9.1. psql

  • Allow psql's \df and \do commands to specify function and operator argument types (Greg Sabino Mullane, Tom Lane)

    This helps reduce the number of matches printed for overloaded names.

  • Add an access method column to psql's \d[i|m|t]+ output (Georgios Kokolatos)

  • Allow psql's \dt and \di to show TOAST tables and their indexes (Justin Pryzby)

  • Add psql command \dX to list extended statistics objects (Tatsuro Yamada)

  • Fix psql's \dT to understand array syntax and backend grammar aliases, like int for integer (Greg Sabino Mullane, Tom Lane)

  • When editing the previous query or a file with psql's \e, or using \ef and \ev, ignore the results if the editor exits without saving (Laurenz Albe)

    Previously, such edits would load the previous query into the query buffer, and typically execute it immediately. This was deemed to be probably not what the user wants.

  • Improve tab completion (Vignesh C, Michael Paquier, Justin Pryzby, Georgios Kokolatos, Julien Rouhaud)

E.1.3.10. Server Applications

  • This suppresses the server startup instructions that are normally printed.

  • This option was unnecessary since all passed options could already be specified directly.

E.1.3.11. Documentation

  • With the removal of the ! operator in this release, factorial() is the only built-in way to compute a factorial.

E.1.3.12. Source Code

  • The spelling --with-openssl is kept for compatibility.

  • This is currently supported on Linux and Windows.

  • Allow Windows to properly handle files larger than four gigabytes (Juan José Santamaría Flecha)

  • Previously this behavior could only be set at compile time. To invoke it during initdb, use the new option --discard-caches.

  • Various improvements in valgrind error detection ability (Álvaro Herrera, Peter Geoghegan)

  • Add a test module for the regular expression package (Tom Lane)

  • Add support for LLVM version 12 (Andres Freund)

  • Change SHA1, SHA2, and MD5 hash computations to use the OpenSSL EVP API (Michael Paquier)

    This is more modern and supports FIPS mode.

  • Remove separate build-time control over the choice of random number generator (Daniel Gustafsson)

    This is now always determined by the choice of SSL library.

  • Add direct conversion routines between EUC_TW and Big5 encodings (Heikki Linnakangas)

  • Add collation version support for FreeBSD (Thomas Munro)

  • This allows an index access method to provide validity checking during creation of a new operator class or family.

  • Provide feature-test macros in libpq-fe.h for recently-added libpq features (Tom Lane, Álvaro Herrera)

    Historically, applications have usually used compile-time checks of PG_VERSION_NUM to test whether a feature is available. But that's normally the server version, which might not be a good guide to libpq's version. libpq-fe.h now offers #define symbols denoting application-visible features added in v14; the intent is to keep adding symbols for such features in future versions.

E.1.3.13. Additional Modules

  • This is similar to LIKE except no wildcards are honored.

  • This is useful for correcting database corruption.

  • Previously it only checked B-Tree index pages.

E.1.3.13.1. pg_stat_statements

  • Move query hash computation from pg_stat_statements to the core server (Julien Rouhaud)

  • Cause pg_stat_statements to track top and nested statements separately (Julien Rohaud)

    Previously, when tracking all statements, identical top and nested statements were tracked as a single entry; but it seems more useful to separate such usages.

  • Add row counts for utility commands to pg_stat_statements (Fujii Masao, Katsuragi Yuta, Seino Yuki)

  • Add pg_stat_statements_info system view to show pg_stat_statements activity (Katsuragi Yuta, Yuki Seino, Naoki Nakamichi)

E.1.3.13.2. postgres_fdw

  • Allow postgres_fdw to INSERT rows in bulk (Takayuki Tsunakawa, Tomas Vondra, Amit Langote)

  • By default, only the root of a partitioned table is imported.

  • Add postgres_fdw function postgres_fdw_get_connections() to report open foreign server connections (Bharath Rupireddy)

  • Allow control over whether foreign servers keep connections open after transaction completion (Bharath Rupireddy)

    This is controlled by keep_connections and defaults to on.

  • Allow postgres_fdw to reestablish foreign server connections if necessary (Bharath Rupireddy)

    Previously foreign server restarts could cause foreign table access errors.

  • Add postgres_fdw functions to discard cached connections (Bharath Rupireddy)

E.1.4. Acknowledgments

The following individuals (in alphabetical order) have contributed to this release as patch authors, committers, reviewers, testers, or reporters of issues.

Abhijit Menon-Sen

Ádám Balogh

Adrian Ho

Ahsan Hadi

Ajin Cherian

Aleksander Alekseev

Alessandro Gherardi

Alex Kozhemyakin

Alexander Korotkov

Alexander Lakhin

Alexander Nawratil

Alexander Pyhalov

Alexandra Wang

Alexey Bashtanov

Alexey Bulgakov

Alexey Kondratov

Álvaro Herrera

Amit Kapila

Amit Khandekar

Amit Langote

Amul Sul

Anastasia Lubennikova

Andreas Grob

Andreas Kretschmer

Andreas Seltenreich

Andreas Wicht

Andres Freund

Andrew Bille

Andrew Dunstan

Andrew Gierth

Andrey Borodin

Andrey Lepikhov

Andy Fan

Anton Voloshin

Antonin Houska

Arne Roland

Arseny Sher

Arthur Nascimento

Arthur Zakirov

Ashutosh Bapat

Ashutosh Sharma

Ashwin Agrawal

Asif Rehman

Asim Praveen

Atsushi Torikoshi

Aya Iwata

Barry Pederson

Bas Poot

Bauyrzhan Sakhariyev

Beena Emerson

Benoît Lobréau

Bernd Helmle

Bernhard M. Wiedemann

Bertrand Drouvot

Bharath Rupireddy

Boris Kolpackov

Brar Piening

Brian Ye

Bruce Momjian

Bryn Llewellyn

Cameron Daniel

Chapman Flack

Charles Samborski

Charlie Hornsby

Chen Jiaoqian

Chris Wilson

Christian Quest

Christoph Berg

Christophe Courtois

Corey Huinker

Craig Ringer

Dagfinn Ilmari Mannsåker

Dana Burd

Daniel Cherniy

Daniel Gustafsson

Daniel Vérité

Daniel Westermann

Daniele Varrazzo

Dar Alathar-Yemen

Darafei Praliaskouski

Dave Cramer

David Christensen

David Fetter

David G. Johnston

David Geier

David Gilman

David Pirotte

David Rowley

David Steele

David Turon

David Zhang

Dean Rasheed

Denis Patron

Dian Fay

Dilip Kumar

Dimitri Nüscheler

Dmitriy Kuzmin

Dmitry Dolgov

Dmitry Marakasov

Domagoj Smoljanovic

Dong Wook

Douglas Doole

Duncan Sands

Edmund Horner

Edson Richter

Egor Rogov

Ekaterina Kiryanova

Elena Indrupskaya

Emil Iggland

Emre Hasegeli

Eric Thinnes

Erik Rijkers

Erwin Brandstetter

Etienne Stalmans

Etsuro Fujita

Eugen Konkov

Euler Taveira

Fabien Coelho

Fabrízio de Royes Mello

Federico Caselli

Felix Lechner

Filip Gospodinov

Floris Van Nee

Frank Gagnepain

Frits Jalvingh

Georgios Kokolatos

Greg Nancarrow

Greg Rychlewski

Greg Sabino Mullane

Gregory Smith

Grigory Smolkin

Guillaume Lelarge

Guy Burgess

Guyren Howe

Haiying Tang

Hamid Akhtar

Hans Buschmann

Hao Wu

Haribabu Kommi

Harisai Hari

Hayato Kuroda

Heath Lord

Heikki Linnakangas

Henry Hinze

Herwig Goemans

Himanshu Upadhyaya

Hironobu Suzuki

Hiroshi Inoue

Hisanori Kobayashi

Honza Horak

Hou Zhijie

Hubert Lubaczewski

Hubert Zhang

Ian Barwick

Ibrar Ahmed

Ildus Kurbangaliev

Isaac Morland

Israel Barth

Itamar Gafni

Jacob Champion

Jaime Casanova

Jaime Soler

Jakub Wartak

James Coleman

James Hilliard

James Hunter

James Inform

Jan Mussler

Japin Li

Jasen Betts

Jason Harvey

Jason Kim

Jeevan Ladhe

Jeff Davis

Jeff Janes

Jelte Fennema

Jeremy Evans

Jeremy Finzel

Jeremy Smith

Jesse Kinkead

Jesse Zhang

Jie Zhang

Jim Doty

Jim Nasby

Jimmy Angelakos

Jimmy Yih

Jiri Fejfar

Joe Conway

Joel Jacobson

John Naylor

John Thompson

Jonathan Katz

Josef Šimánek

Joseph Nahmias

Josh Berkus

Juan José Santamaría Flecha

Julien Rouhaud

Junfeng Yang

Jürgen Purtz

Justin Pryzby

Kazutaka Onishi

Keisuke Kuroda

Kelly Min

Kensuke Okamura

Kevin Sweet

Kevin Yeap

Kirk Jamison

Kohei KaiGai

Konstantin Knizhnik

Kota Miyake

Krzysztof Gradek

Kuntal Ghosh

Kyle Kingsbury

Kyotaro Horiguchi

Laurent Hasson

Laurenz Albe

Lee Dong Wook

Li Japin

Liu Huailing

Luc Vlaming

Ludovic Kuty

Luis Roberto

Lukas Eder

Ma Liangzhu

Maciek Sakrejda

Madan Kumar

Magnus Hagander

Mahendra Singh Thalor

Maksim Milyutin

Marc Boeren

Marcin Krupowicz

Marco Atzeri

Marek Szuba

Marina Polyakova

Mario Emmenlauer

Mark Dilger

Mark Wong

Mark Zhao

Markus Wanner

Martín Marqués

Martin Visser

Masahiko Sawada

Masahiro Ikeda

Masao Fujii

Mathis Rudolf

Matthias van de Meent

Matthieu Garrigues

Matthijs van der Vleuten

Maxim Orlov

Melanie Plageman

Merlin Moncure

Michael Banck

Michael Brown

Michael Meskes

Michael Paquier

Michael Paul Killian

Michael Powers

Michael Vastola

Michail Nikolaev

Michal Albrycht

Mikael Gustavsson

Movead Li

Muhammad Usama

Nagaraj Raj

Naoki Nakamichi

Nathan Bossart

Nathan Long

Nazli Ugur Koyluoglu

Neha Sharma

Neil Chen

Nick Cleaton

Nico Williams

Nikhil Benesch

Nikhil Sontakke

Nikita Glukhov

Nikita Konev

Nikolai Berkoff

Nikolay Samokhvalov

Nikolay Shaplov

Nitin Jadhav

Noah Misch

Noriyoshi Shinoda

Odin Ugedal

Oleg Bartunov

Oleg Samoilov

Önder Kalaci

Pascal Legrand

Paul Förster

Paul Guo

Paul Jungwirth

Paul Martinez

Paul Sivash

Pavan Deolasee

Pavel Boev

Pavel Borisov

Pavel Luzanov

Pavel Stehule

Pengcheng Liu

Peter Eisentraut

Peter Geoghegan

Peter Smith

Peter Vandivier

Petr Fedorov

Petr Jelínek

Phil Krylov

Philipp Gramzow

Philippe Beaudoin

Phillip Menke

Pierre Giraud

Prabhat Sahu

Quan Zongliang

Rafi Shamim

Rahila Syed

Rajkumar Raghuwanshi

Ranier Vilela

Regina Obe

Rémi Lapeyre

Robert Foggia

Robert Grange

Robert Haas

Robert Kahlert

Robert Sosinski

Robert Treat

Robin Abbi

Robins Tharakan

Roger Mason

Rohit Bhogate

Roman Zharkov

Ron L. Johnson

Ronan Dunklau

Ryan Lambert

Ryo Matsumura

Saeed Hubaishan

Sait Talha Nisanci

Sandro Mani

Santosh Udupi

Scott Ribe

Sehrope Sarkuni

Sergei Kornilov

Sergey Bernikov

Sergey Cherkashin

Sergey Koposov

Sergey Shinderuk

Sergey Zubkovsky

Shawn Wang

Shay Rojansky

Shi Yu

Shinya Kato

Shinya Okano

Sigrid Ehrenreich

Simon Norris

Simon Riggs

Sofoklis Papasofokli

Soumyadeep Chakraborty

Stas Kelvich

Stephan Springl

Stéphane Lorek

Stephen Frost

Steven Winfield

Surafel Temesgen

Suraj Kharage

Sven Klemm

Takamichi Osumi

Takashi Menjo

Takayuki Tsunakawa

Tang Haiying

Tatsuhito Kasahara

Tatsuo Ishii

Tatsuro Yamada

Theodor Arsenij Larionov-Trichkin

Thomas Kellerer

Thomas Munro

Thomas Trenz

Tijs van Dam

Tom Ellis

Tom Gottfried

Tom Lane

Tom Vijlbrief

Tomas Barton

Tomas Vondra

Tomohiro Hiramitsu

Tony Reix

Vaishnavi Prabakaran

Valentin Gatien-Baron

Victor Wagner

Victor Yegorov

Vignesh C

Vik Fearing

Vitaly Ustinov

Vladimir Sitnikov

Vyacheslav Shablistyy

Wang Shenhao

Wei Wang

Wells Oliver

Wenjing Zeng

Wolfgang Walther

Yang Lin

Yanliang Lei

Yaoguang Chen

Yaroslav Pashinsky

Yaroslav Schekin

Yasushi Yamashita

Yoran Heling

YoungHwan Joo

Yugo Nagata

Yuki Seino

Yukun Wang

Yulin Pei

Yura Sokolov

Yuta Katsuragi

Yuta Kondo

Yuzuko Hosoya

Zhihong Yu

Zhiyong Wu

Zsolt Ero

Specifically, , array_prepend(), array_cat(), array_position(), array_positions(), array_remove(), array_replace(), and used to take anyarray arguments but now take anycompatiblearray. Therefore, user-defined objects like aggregates and operators that reference those array function signatures must be dropped before upgrading, and recreated once the upgrade completes.

Remove deprecated containment operators @ and ~ for built-in and contrib modules , , , and (Justin Pryzby)

Fix and websearch_to_tsquery() to properly parse query text containing discarded tokens (Alexander Korotkov)

Fix to properly parse multiple adjacent discarded tokens in quotes (Alexander Korotkov)

Change to return type numeric instead of float8 (Peter Eisentraut)

Change and stddev_samp() with numeric parameters to return NULL when the input is a single NaN value (Tom Lane)

Return false for checks on non-existent or dropped columns when using attribute numbers (Joe Conway)

Fix handling of infinite ranges (Tom Lane)

The function is still supported.

Remove support for (right-unary) operators (Mark Dilger)

Allow \D and \W shorthands to match newlines in newline-sensitive mode (Tom Lane)

Disregard constraints when matching regular expression (Tom Lane)

Require names to use only characters that are valid in unquoted SQL identifiers (Tom Lane)

Change the default of the server parameter to scram-sha-256 (Peter Eisentraut)

Overhaul the specification of clientcert in (Kyotaro Horiguchi)

Remove support for compression (Daniel Gustafsson, Michael Paquier)

Remove server and support for the version 2 (Heikki Linnakangas)

Disallow single-quoting of the language name in the command (Peter Eisentraut)

Remove the that were formerly created for sequences and toast tables (Tom Lane)

Process doubled quote marks in SQL command strings correctly (Tom Lane)

Prevent the containment operators (<@ and @>) for from using GiST indexes (Tom Lane)

Prevent 's function normal_rand() from accepting negative values (Ashutosh Bapat)

Add predefined roles and pg_write_all_data (Stephen Frost)

Add predefined role that contains only the current database's owner (Noah Misch)

Previously, such files were retained for debugging purposes. If necessary, deletion can be disabled with the new server parameter .

The server parameter allows control over whether loss of connection is checked for intra-query. (This is supported on Linux and a few other operating systems.)

Add an optional timeout parameter to

Previously tuples whose insertion would have exceeded the page's were instead added to new pages.

This can be disabled by turning off client connection option .

The vacuum parameter has a new default of auto that enables this optimization.

Reduce the default value of to better reflect current hardware capabilities (Peter Geoghegan)

now has a PROCESS_TOAST option which can be set to false to disable TOAST processing, and has a --no-process-toast option.

Have appropriately update page visibility bits (Anastasia Lubennikova, Pavan Deolasee, Jeff Janes)

This is controlled by and .

Add per-index information to (Masahiko Sawada)

Allow partitions to be in a non-blocking manner (Álvaro Herrera)

Allow btree index additions to to prevent page splits (Peter Geoghegan)

Allow indexes to record multiple min/max values per range (Tomas Vondra)

Allow some indexes to be built by presorting the data (Andrey Borodin)

Allow indexes to contain INCLUDE'd columns (Pavel Borisov)

Increase the number of places can be used for OR clause estimation (Tomas Vondra, Dean Rasheed)

This allows statistics on a group of expressions and columns, rather than only columns like previously. System view reports such statistics.

Allow efficient heap scanning of a range of (Edmund Horner, David Rowley)

Fix and EXPLAIN CREATE MATERIALIZED VIEW to honor IF NOT EXISTS (Bharath Rupireddy)

Improve the speed of computing MVCC on systems with many CPUs and high session counts (Andres Freund)

This is useful if only a small percentage of rows is checked on the inner side. It can be disabled via server parameter .

Allow to perform incremental sorts (David Rowley)

This was done by allocating blocks in groups to .

Allow a query referencing multiple to perform foreign table scans in parallel (Robert Haas, Kyotaro Horiguchi, Thomas Munro, Etsuro Fujita)

supports this type of scan if async_capable is set.

Allow to do page prefetching (Stephen Frost)

This is controlled by .

Improve performance of searches (Tom Lane)

This speeds and IS NORMALIZED.

Add ability to use on TOAST data (Dilip Kumar)

This can be set at the column level, or set as a default via server parameter . The server must be compiled with to support this feature. The default setting is still pglz.

If server parameter is enabled, display the query id in , , , and optionally in (Julien Rouhaud)

Improve logging of and auto-analyze (Stephen Frost, Jakub Wartak)

This reports I/O timings for auto-vacuum and auto-analyze if is enabled. Also, report buffer read and dirty rates for auto-analyze.

Add information about the original user name supplied by the client to the output of (Jacob Champion)

Add system view to report COPY progress (Josef Šimánek, Matthias van de Meent)

Add system view to report WAL activity (Masahiro Ikeda)

Add system view to report replication slot activity (Sawada Masahiko, Amit Kapila, Vignesh C)

The function resets slot statistics.

Add system view to report session memory usage (Atsushi Torikoshi, Fujii Masao)

Add function to output the memory contexts of arbitrary backends (Atsushi Torikoshi)

Add session statistics to the system view (Laurenz Albe)

Add columns to to report generic and custom plan counts (Atsushi Torikoshi, Kyotaro Horiguchi)

Add lock wait start time to (Atsushi Torikoshi)

Add wait event to report WAL receiver exit wait time (Fujii Masao)

Implement information schema view to track columns referenced by function and procedure default expressions (Peter Eisentraut)

The new option clientname=DN allows comparison with certificate attributes beyond the CN and can be combined with ident maps.

Allow pg_hba.conf and records to span multiple lines (Fabien Coelho)

This is controlled by server parameter and libpq connection option . Previously only single CRL files could be specified.

Add server parameter to close idle sessions (Li Japin)

This is similar to .

Change default to 0.9 (Stephen Frost)

Allow %P in to report the parallel group leader's PID for a parallel worker (Justin Pryzby)

Allow to specify paths as individual, comma-separated quoted strings (Ian Lawrence Barwick)

This is controlled by . This allows more use of huge pages.

Add server parameter to control the size of huge pages used on Linux (Odin Ugedal)

Allow standby servers to be rewound via (Heikki Linnakangas)

Allow the setting to be changed during a server reload (Sergei Kornilov)

You can also set restore_command to an empty string and reload to force recovery to only read from the directory.

Add server parameter to report long recovery conflict wait times (Bertrand Drouvot, Masahiko Sawada)

Add function to report the recovery state (Dilip Kumar)

It gives more detailed information than , which still exists.

Add new read-only server parameter (Haribabu Kommi, Greg Nancarrow, Tom Lane)

By default, PostgreSQL opens and fsyncs each data file in the database cluster at the start of crash recovery. A new setting, =syncfs, instead syncs each filesystem used by the cluster. This allows for faster recovery on systems with many database files.

Add function to return the commit timestamp and replication origin of the specified transaction (Movead Li)

Add the replication origin to the record returned by (Movead Li)

Allow replication to be controlled using standard function permission controls (Martín Marqués)

Previously transactions that exceeded were written to disk until the transaction completed.

The output functions begin with . test_decoding also supports these.

This is controlled via .

This allows to work efficiently in presence of a large amount of DDL.

Add SQL-standard SEARCH and CYCLE clauses for (Peter Eisentraut)

Allow to use parallelism (Bharath Rupireddy)

Allow to change the tablespace of the new index (Alexey Kondratov, Michael Paquier, Justin Pryzby)

This is done by specifying a TABLESPACE clause. A --tablespace option was also added to to control this.

Improve the performance of in binary mode (Bharath Rupireddy, Amit Langote)

Preserve SQL standard syntax for SQL-defined functions in (Tom Lane)

Previously, calls to SQL-standard functions such as were shown in plain function-call syntax. The original syntax is now preserved when displaying a view or rule.

Add the SQL-standard clause GRANTED BY to and (Peter Eisentraut)

Add OR REPLACE option for (Takamichi Osumi)

Allow to operate on foreign tables (Kazutaka Onishi, Kohei KaiGai)

The module also now supports this.

The new syntax is . This avoids having to specify all publications to add/remove entries.

Add primary keys, unique constraints, and foreign keys to (Peter Eisentraut)

These changes help GUI tools analyze the system catalogs. The existing unique indexes of catalogs now have associated UNIQUE or PRIMARY KEY constraints. Foreign key relationships are not actually stored or implemented as constraints, but can be obtained for display from the function .

Allow every place CURRENT_USER is accepted (Peter Eisentraut)

Allow extensions and built-in data types to implement (Dmitry Dolgov)

Allow subscripting of (Dmitry Dolgov)

Add support for (Paul Jungwirth, Alexander Korotkov)

Add support for the of languages Armenian, Basque, Catalan, Hindi, Serbian, and Yiddish (Peter Eisentraut)

Allow to have unlimited line lengths (Tom Lane)

Add support for Infinity and -Infinity values in the (Tom Lane)

Add <<| and |>> representing strictly above/below tests (Emre Hasegeli)

Add operators to add and subtract and numeric (byte) values (Fujii Masao)

Allow to be more forgiving of array and record OID mismatches (Tom Lane)

Allow SQL-language and to use SQL-standard function bodies (Peter Eisentraut)

Allow to have OUT parameters (Peter Eisentraut)

The functions , array_prepend(), array_cat(), array_position(), array_positions(), array_remove(), array_replace(), and now take anycompatiblearray instead of anyarray arguments. This makes them less fussy about exact matches of argument types.

Add SQL-standard function (Vik Fearing)

Add bytea equivalents of and rtrim() (Joel Jacobson)

Support negative indexes in (Nikhil Benesch)

Add function to split a string on delimiters (Pavel Stehule)

This is similar to the function.

Add function to allow Unicode characters to be specified as backslash-hex escapes in strings (Pavel Stehule)

Add XOR aggregate function (Alexey Bashtanov)

Add function to return the number of bits set in a bit or byte string (David Fetter)

Add function (John Naylor)

Allow /make_timestamptz() to accept negative years (Peter Eisentraut)

Add newer regular expression syntax (Peter Eisentraut)

Allow complemented character class escapes , \S, and \W within regular expression brackets (Tom Lane)

Add as a regular expression character class, equivalent to \w (Tom Lane)

Allow more flexible data types for default values of and lag() window functions (Vik Fearing)

Make non-zero divided by infinity return zero (Kyotaro Horiguchi)

Cause and power() for negative-infinity exponents to return zero (Tom Lane)

Change , pg_identify_object(), and pg_identify_object_as_address() to always report helpful error messages for non-existent objects (Michael Paquier)

Improve PL/pgSQL's and parsing (Tom Lane)

Allow plpgsql's to execute its query using parallelism (Tom Lane)

Improve performance of repeated s within plpgsql procedures (Pavel Stehule, Tom Lane)

Add mode to libpq (Craig Ringer, Matthieu Garrigues, Álvaro Herrera)

Enhance libpq's parameter options (Haribabu Kommi, Greg Nancarrow, Vignesh C, Tom Lane)

Improve the output format of libpq's (Aya Iwata, Álvaro Herrera)

This is done via .

Allow to skip index cleanup and truncation (Nathan Bossart)

Allow to dump only certain extensions (Guillaume Lelarge)

Add permute() function to randomly shuffle values (Fabien Coelho, Hironobu Suzuki, Dean Rasheed)

This behavior is supported by , , and .

Add command-line utility to simplify running contrib/amcheck tests on many relations (Mark Dilger)

Add --no-instructions option to (Magnus Hagander)

Stop from creating analyze_new_cluster script (Magnus Hagander)

Instead, give comparable instructions.

Remove support for the -o option (Magnus Hagander)

Rename "Default Roles" to (Bruce Momjian, Stephen Frost)

Add documentation for the function (Peter Eisentraut)

Add configure option to allow future choice of the SSL library to use (Daniel Gustafsson, Michael Paquier)

Add support for (Peter Eisentraut)

For example this allows files, and relation segment files to be larger than four gigabytes.

Add server parameter to control cache flushing for test purposes (Craig Ringer)

Add to the index access method API (Tom Lane)

Allow subscripting of values (Tom Lane, Dmitry Dolgov)

Allow GiST/GIN indexes to do equality lookups (Julien Rouhaud)

Allow the data type to be transferred in binary mode (KaiGai Kohei)

Allow to report on TOAST tables (Peter Eisentraut)

Add contrib module which allows changes to row visibility (Ashutosh Sharma)

Add contrib module to report the XID/time mapping used by an active (Robert Haas)

Allow to also check heap pages (Mark Dilger)

Allow to inspect GiST indexes (Andrey Borodin, Heikki Linnakangas)

Change pageinspect block numbers to be (Peter Eisentraut)

Mark functions as parallel safe (Steven Winfield)

The new server parameter 's default of auto will automatically enable query id computation when this extension is loaded.

Allow postgres_fdw to import table partitions if specified by (Matthias van de Meent)

pg_dumpall
pg_upgrade
Section 19.6
array_append()
width_bucket()
geometric data types
cube
hstore
intarray
seg
to_tsquery()
websearch_to_tsquery()
EXTRACT()
var_samp()
has_column_privilege()
window function
factorial()
postfix
regular expression
back-references
custom server parameter
password_encryption
pg_hba.conf
SSL
libpq
wire protocol
CREATE/DROP LANGUAGE
composite types
ecpg
intarray
tablefunc
pg_read_all_data
pg_database_owner
remove_temp_files_after_crash
client_connection_check_interval
pg_terminate_backend()
fill factor
sslsni
INDEX_CLEANUP
vacuum_cost_page_miss
VACUUM
vacuumdb
COPY FREEZE
vacuum_failsafe_age
vacuum_multixact_failsafe_age
autovacuum logging output
detached
remove expired index entries
BRIN
GiST
SP-GiST
extended statistics
pg_stats_ext_exprs
TIDs
EXPLAIN CREATE TABLE AS
visibility snapshots
enable_memoize
window functions
parallel workers
foreign tables
postgres_fdw
analyze
maintenance_io_concurrency
regular expression
normalize()
LZ4 compression
default_toast_compression
--with-lz4
compute_query_id
pg_stat_activity
EXPLAIN VERBOSE
csvlog
log_line_prefix
auto-vacuum
track_io_timing
log_connections
pg_stat_progress_copy
pg_stat_wal
pg_stat_replication_slots
pg_stat_reset_replication_slot()
pg_backend_memory_contexts
pg_log_backend_memory_contexts()
pg_stat_database
pg_prepared_statements
pg_locks
WalReceiverExit
routine_column_usage
pg_hba.conf
pg_ident.conf
ssl_crl_dir
sslcrldir
idle_session_timeout
idle_in_transaction_session_timeout
checkpoint_completion_target
log_line_prefix
unix_socket_directories
min_dynamic_shared_memory
huge_page_size
pg_rewind
restore_command
pg_wal
log_recovery_conflict_waits
pg_get_wal_replay_pause_state()
pg_is_wal_replay_paused()
in_hot_standby
recovery_init_sync_method
pg_xact_commit_timestamp_origin()
pg_last_committed_xact()
origin functions
logical_decoding_work_mem
stream
pg_create_logical_replication_slot()
logical decoding
common table expressions
REFRESH MATERIALIZED VIEW
REINDEX
reindexdb
COPY FROM
view definitions
EXTRACT()
GRANT
REVOKE
CREATE TRIGGER
TRUNCATE
postgres_fdw
ALTER SUBSCRIPTION ... ADD/DROP PUBLICATION
system catalogs
pg_get_catalog_foreign_keys()
CURRENT_ROLE
subscripting
JSONB
multirange data types
stemming
tsearch data files
numeric data type
point operators
LSN
binary data transfer
functions
procedures
procedures
array_append()
width_bucket()
trim_array()
ltrim()
split_part()
string_to_table()
regexp_split_to_table()
unistr()
bit_xor()
bit_count()
date_bin()
make_timestamp()
substring()
\D
[[:word:]]
lead()
floating-point values
exp()
pg_describe_object()
expression
assignment
RETURN QUERY
CALL
pipeline
target_session_attrs
PQtrace()
DECLARE ... STATEMENT
vacuumdb
pg_dump
pgbench
pg_dump
pg_dumpall
pg_restore
pg_amcheck
initdb
pg_upgrade
vacuumdb
postmaster
"Predefined Roles"
factorial()
--with-ssl={openssl}
abstract Unix-domain sockets
COPY,
WAL
debug_discard_caches
amadjustmembers
hstore
pg_trgm
cube
pgstattuple_approx()
pg_surgery
old_snapshot
old_snapshot_threshold
amcheck
pageinspect
bigints
btree_gist
compute_query_id
IMPORT FOREIGN SCHEMA ... LIMIT TO