From 06865113d74fe39451f0a4cee3c18f5675392e48 Mon Sep 17 00:00:00 2001 From: Nickolay Ponomarev Date: Mon, 20 Apr 2020 05:43:57 +0300 Subject: [PATCH] Update comments (follow-up to PR #158) --- src/ast/query.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ast/query.rs b/src/ast/query.rs index 43342198..a26ba265 100644 --- a/src/ast/query.rs +++ b/src/ast/query.rs @@ -403,8 +403,10 @@ impl fmt::Display for Offset { } } +/// Stores the keyword after `OFFSET ` #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum OffsetRows { + /// Omitting ROW/ROWS is non-standard MySQL quirk. None, Row, Rows,