Chapter 35. Extending SQL
Table of Contents
- 35.1. How Extensibility Works- 35.2. The Postgres Pro Type System
- 35.3. User-defined Functions- 35.4. Query Language (SQL) Functions
- 35.4.1. Arguments for SQL Functions- 35.4.2. SQL Functions on Base Types
- 35.4.3. SQL Functions on Composite Types
- 35.4.4. SQL Functions with Output Parameters
- 35.4.5. SQL Functions with Variable Numbers of Arguments
- 35.4.6. SQL Functions with Default Values for Arguments
- 35.4.7. SQL Functions as Table Sources
- 35.4.8. SQL Functions Returning Sets
- 35.4.9. SQL Functions Returning
TABLE
- 35.4.10. Polymorphic SQL Functions
- 35.4.11. SQL Functions with Collations
- 35.4.2. SQL Functions on Base Types
 
- 35.4.1. Arguments for SQL Functions
- 35.5. Function Overloading- 35.6. Function Volatility Categories
- 35.7. Procedural Language Functions
- 35.8. Internal Functions
- 35.9. C-Language Functions
- 35.6. Function Volatility Categories
- 35.9.1. Dynamic Loading- 35.9.2. Base Types in C-Language Functions
- 35.9.3. Version 1 Calling Conventions
- 35.9.4. Writing Code
- 35.9.5. Compiling and Linking Dynamically-loaded Functions
- 35.9.6. Composite-type Arguments
- 35.9.7. Returning Rows (Composite Types)
- 35.9.8. Returning Sets
- 35.9.9. Polymorphic Arguments and Return Types
- 35.9.10. Transform Functions
- 35.9.11. Shared Memory and LWLocks
- 35.9.12. Using C++ for Extensibility
- 35.9.2. Base Types in C-Language Functions
 
- 35.9.1. Dynamic Loading
- 35.10. User-defined Aggregates
- 35.11. User-defined Types- 35.12. User-defined Operators
- 35.13. Operator Optimization Information
- 35.12. User-defined Operators
- 35.14. Interfacing Extensions To Indexes
- 35.15. Packaging Related Objects into an Extension
- 35.16. Extension Building Infrastructure
In the sections that follow, we will discuss how you can extend the Postgres Pro SQL query language by adding:
- functions (starting in Section 35.3) 
- aggregates (starting in Section 35.10) 
- data types (starting in Section 35.11) 
- operators (starting in Section 35.12) 
- operator classes for indexes (starting in Section 35.14) 
- packages of related objects (starting in Section 35.15)