diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-05-07 08:16:18 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-05-07 08:16:18 -0400 |
commit | b24e172e9e6f8e3e60e4ff36d018f8611a55090a (patch) | |
tree | f4d91af9adef49e3ac649ce30202fcda3ef42667 /doc | |
parent | 40cfc262411e37ef754664b1abb9233b772093c2 (diff) |
Fix manual's grammar for subquery FROM items
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.tex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/manual.tex b/doc/manual.tex index 5bc4c6ae..6012270b 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -2173,8 +2173,10 @@ $$\begin{array}{rrcll} \textrm{Column names} & f &::=& X & \textrm{constant column name} \\ &&& \{c\} & \textrm{computed column name (of kind $\mt{Name}$)} \\ \textrm{Tables} & T &::=& x & \textrm{table variable, named locally by its own capitalization} \\ - &&& x \; \mt{AS} \; t & \textrm{table variable, with local name} \\ + &&& x \; \mt{AS} \; X & \textrm{table variable, with local name} \\ + &&& x \; \mt{AS} \; \{c\} & \textrm{table variable, with computed local name} \\ &&& \{\{e\}\} \; \mt{AS} \; t & \textrm{computed table expression, with local name} \\ + &&& \{\{e\}\} \; \mt{AS} \; \{c\} & \textrm{computed table expression, with computed local name} \\ \textrm{$\mt{FROM}$ items} & F &::=& T \mid \{\{e\}\} \mid F \; J \; \mt{JOIN} \; F \; \mt{ON} \; E \\ &&& \mid F \; \mt{CROSS} \; \mt{JOIN} \ F \\ &&& \mid (Q) \; \mt{AS} \; t \\ |