Skip to content

Commit 0f6bf15

Browse files
committed
Fix bad merge in apache#118
1 parent e6b2633 commit 0f6bf15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dialect/keywords.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ pub const RESERVED_FOR_TABLE_ALIAS: &[&str] = &[
422422
// Reserved as both a table and a column alias:
423423
WITH, SELECT, WHERE, GROUP, HAVING, ORDER, LIMIT, OFFSET, FETCH, UNION, EXCEPT, INTERSECT,
424424
// Reserved only as a table alias in the `FROM`/`JOIN` clauses:
425-
ON, JOIN, INNER, CROSS, FULL, LEFT, RIGHT, NATURAL, USING, LIMIT, OFFSET, FETCH,
425+
ON, JOIN, INNER, CROSS, FULL, LEFT, RIGHT, NATURAL, USING,
426426
// Reserved not because of ambiguity, but so that parsing `SELECT * FROM a
427427
// OUTER JOIN b` causes a syntax error, rather than silently parsing to an
428428
// inner join where table `a` is aliased as `OUTER`, which is certainly not

0 commit comments

Comments
 (0)