summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-11-05 09:40:38 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2011-11-05 09:40:38 -0400
commit9aa9c1fc665f38a1569ea6cdbf90ce4aee7c10af (patch)
treee34a859ba01416a6f1fb05441552536a76fccaad /doc
parent7fc52c09c4256376a360757764423ee52b8759c4 (diff)
Fix SQL grammar bug in manual
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.tex b/doc/manual.tex
index 71df6ccc..6cbecea3 100644
--- a/doc/manual.tex
+++ b/doc/manual.tex
@@ -2131,7 +2131,7 @@ $$\begin{array}{rrcll}
&&& \mid (Q) \; \mt{AS} \; t \\
\textrm{Joins} & J &::=& [\mt{INNER}] \\
&&& \mid [\mt{LEFT} \mid \mt{RIGHT} \mid \mt{FULL}] \; [\mt{OUTER}] \\
- \textrm{SQL expressions} & E &::=& p & \textrm{column references} \\
+ \textrm{SQL expressions} & E &::=& t.f & \textrm{column references} \\
&&& X & \textrm{named expression references} \\
&&& \{[e]\} & \textrm{injected native Ur expressions} \\
&&& \{e\} & \textrm{computed expressions, probably using $\mt{sql\_exp}$ directly} \\