aboutsummaryrefslogtreecommitdiffhomepage
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
commit938bcbbea4b80f042840b0723a021244e68715e6 (patch)
treee34a859ba01416a6f1fb05441552536a76fccaad /doc
parent2440e2d4f87883aac96f75d5630b2a7fefe11b08 (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} \\