diff options
author | Andres Freund <andres@anarazel.de> | 2019-04-03 17:37:00 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-04-03 17:40:29 -0700 |
commit | b73c3a11963c8bb783993cfffabb09f558f86e37 (patch) | |
tree | 566965defff69656c76b6f9bef2f80ce4dd892a5 /src | |
parent | ab9ed9be2378f02edf613e0543a29287e7484338 (diff) | |
download | postgresql-b73c3a11963c8bb783993cfffabb09f558f86e37.tar.gz postgresql-b73c3a11963c8bb783993cfffabb09f558f86e37.zip |
tableam: basic documentation.
This adds documentation about the user oriented parts of table access
methods (i.e. the default_table_access_method GUC and the USING clause
for CREATE TABLE etc), adds a basic chapter about the table access
method interface, and adds a note to storage.sgml that it's contents
don't necessarily apply for non-builtin AMs.
Author: Haribabu Kommi and Andres Freund
Discussion: https://postgr.es/m/20180703070645.wchpu5muyto5n647@alap3.anarazel.de
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/tableam.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h index 4b760c2cd75..42e2ba68bf9 100644 --- a/src/include/access/tableam.h +++ b/src/include/access/tableam.h @@ -9,6 +9,9 @@ * * src/include/access/tableam.h * + * NOTES + * See tableam.sgml for higher level documentation. + * *------------------------------------------------------------------------- */ #ifndef TABLEAM_H |