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 7789817 commit 4f4fcbfCopy full SHA for 4f4fcbf
src/parser/mod.rs
@@ -10523,7 +10523,6 @@ impl<'a> Parser<'a> {
10523
/// Parse the body of a `CREATE FUNCTION` specified as a string.
10524
/// e.g. `CREATE FUNCTION ... AS $$ body $$`.
10525
fn parse_create_function_body_string(&mut self) -> Result<CreateFunctionBody, ParserError> {
10526
- // Helper closure to parse a single string value (quoted or dollar-quoted)
10527
let parse_string_expr = |parser: &mut Parser| -> Result<Expr, ParserError> {
10528
let peek_token = parser.peek_token();
10529
let span = peek_token.span;
0 commit comments