We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aee474 commit 3d2a646Copy full SHA for 3d2a646
src/ast/value.rs
@@ -116,7 +116,6 @@ impl From<ValueWithSpan> for Value {
116
derive(Visit, VisitMut),
117
visit(with = "visit_value")
118
)]
119
-
120
pub enum Value {
121
/// Numeric literal
122
#[cfg(not(feature = "bigdecimal"))]
src/parser/mod.rs
@@ -9079,10 +9079,10 @@ impl<'a> Parser<'a> {
9079
}),
9080
}))
9081
} else {
9082
- return self.expected_ref(
+ self.expected_ref(
9083
"{RENAME TO | { RENAME | ADD } VALUE}",
9084
self.peek_token_ref(),
9085
- );
+ )
9086
}
9087
9088
0 commit comments