diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-04-21 15:47:02 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-04-21 15:47:02 -0400 |
commit | 4ba39cb7e4cdc2231460043c1e5b7308a225329b (patch) | |
tree | 165d8f853e8893de71822e03938cef56007ec894 /doc | |
parent | 64be34d44a0de6a4710b3bff9feb087df7dcc70c (diff) |
Antiquote for PRIMARY KEY
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.tex b/doc/manual.tex index c18a594c..9f3e44a8 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -2113,7 +2113,7 @@ $\mt{table}$ declarations may include constraints, via these grammar rules. $$\begin{array}{rrcll} \textrm{Declarations} & d &::=& \mt{table} \; x : c \; [pk[,]] \; cts \mid \mt{view} \; x = V \\ \textrm{Primary key constraints} & pk &::=& \mt{PRIMARY} \; \mt{KEY} \; K \\ - \textrm{Keys} & K &::=& f \mid (f, (f,)^+) \\ + \textrm{Keys} & K &::=& f \mid (f, (f,)^+) \mid \{\{e\}\} \\ \textrm{Constraint sets} & cts &::=& \mt{CONSTRAINT} f \; ct \mid cts, cts \mid \{\{e\}\} \\ \textrm{Constraints} & ct &::=& \mt{UNIQUE} \; K \mid \mt{CHECK} \; E \\ &&& \mid \mt{FOREIGN} \; \mt{KEY} \; K \; \mt{REFERENCES} \; F \; (K) \; [\mt{ON} \; \mt{DELETE} \; pr] \; [\mt{ON} \; \mt{UPDATE} \; pr] \\ |