# HG changeset patch # User Adam Chlipala # Date 1336392978 14400 # Node ID f69174d0abc0d2746a2c44d92c765844f5b27e84 # Parent e9587120831aae16f442f3e87fe7ddada7da3207 Fix manual's grammar for subquery FROM items diff -r e9587120831a -r f69174d0abc0 doc/manual.tex --- a/doc/manual.tex Sun May 06 16:08:48 2012 -0400 +++ b/doc/manual.tex Mon May 07 08:16:18 2012 -0400 @@ -2173,8 +2173,10 @@ \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 \\