diff --git a/doc/src/sgml/glossary.sgml b/doc/src/sgml/glossary.sgml
index b88cac598e9..8651f0cdb91 100644
--- a/doc/src/sgml/glossary.sgml
+++ b/doc/src/sgml/glossary.sgml
@@ -1419,11 +1419,15 @@
Relation
- The generic term for all objects in a
- database
- that have a name and a list of
- attributes
- defined in a specific order.
+ Mathematically, a relation is a set of
+ tuples;
+ this is the sense meant in the term "relational database".
+
+
+
+ In PostgreSQL, "relation" is commonly used to
+ mean an SQL object
+ that has a name and a list of attributes defined in a specific order.
Tables,
sequences,
views,
@@ -1431,15 +1435,14 @@
materialized views,
composite types, and
indexes are all relations.
+ A relation in this sense is a container or a descriptor for a set of tuples.
+
- More generically, a relation is a set of tuples; for example,
- the result of a query is also a relation.
-
-
- In PostgreSQL,
- Class is an archaic synonym for
- relation.
+ Class is an alternative but archaic term.
+ The system catalog
+ pg_class
+ holds an entry for each PostgreSQL relation.