From 0f6bf1525841a4024667938df01c128428c8dd36 Mon Sep 17 00:00:00 2001 From: Nickolay Ponomarev Date: Wed, 19 Jun 2019 02:44:05 +0300 Subject: [PATCH] Fix bad merge in #118 --- src/dialect/keywords.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialect/keywords.rs b/src/dialect/keywords.rs index 4a50c7fc..ff541cce 100644 --- a/src/dialect/keywords.rs +++ b/src/dialect/keywords.rs @@ -422,7 +422,7 @@ pub const RESERVED_FOR_TABLE_ALIAS: &[&str] = &[ // Reserved as both a table and a column alias: WITH, SELECT, WHERE, GROUP, HAVING, ORDER, LIMIT, OFFSET, FETCH, UNION, EXCEPT, INTERSECT, // Reserved only as a table alias in the `FROM`/`JOIN` clauses: - ON, JOIN, INNER, CROSS, FULL, LEFT, RIGHT, NATURAL, USING, LIMIT, OFFSET, FETCH, + ON, JOIN, INNER, CROSS, FULL, LEFT, RIGHT, NATURAL, USING, // Reserved not because of ambiguity, but so that parsing `SELECT * FROM a // OUTER JOIN b` causes a syntax error, rather than silently parsing to an // inner join where table `a` is aliased as `OUTER`, which is certainly not