aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2012-02-25 15:34:44 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2012-02-25 15:34:44 -0500
commit78398d0d94e638982876c99a3988ee18884a4905 (patch)
tree40a1dcca817a0d700c4cc11b30d4e3b79cab9223 /doc
parent59fdaa208b834ab2e6e23262405d0e9f4559e9aa (diff)
Correct an SQL grammar omission (thanks to Alexei Golovko for spotting the problem)
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 169560f1..10d49f7e 100644
--- a/doc/manual.tex
+++ b/doc/manual.tex
@@ -2174,7 +2174,7 @@ $$\begin{array}{rrcll}
&&& (E) & \textrm{explicit precedence} \\
\textrm{Nullary operators} & n &::=& \mt{CURRENT\_TIMESTAMP} \\
\textrm{Unary operators} & u &::=& \mt{NOT} \\
- \textrm{Binary operators} & b &::=& \mt{AND} \mid \mt{OR} \mid \neq \mid < \mid \leq \mid > \mid \geq \\
+ \textrm{Binary operators} & b &::=& \mt{AND} \mid \mt{OR} \mid = \mid \neq \mid < \mid \leq \mid > \mid \geq \\
\textrm{Aggregate functions} & a &::=& \mt{COUNT} \mid \mt{AVG} \mid \mt{SUM} \mid \mt{MIN} \mid \mt{MAX} \\
\textrm{Directions} & o &::=& \mt{ASC} \mid \mt{DESC} \mid \{e\} \\
\textrm{SQL integer} & N &::=& n \mid \{e\} \\