Skip to content

Commit 4f4fcbf

Browse files
Update src/parser/mod.rs
Co-authored-by: Ifeanyi Ubah <[email protected]>
1 parent 7789817 commit 4f4fcbf

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/parser/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10523,7 +10523,6 @@ impl<'a> Parser<'a> {
1052310523
/// Parse the body of a `CREATE FUNCTION` specified as a string.
1052410524
/// e.g. `CREATE FUNCTION ... AS $$ body $$`.
1052510525
fn parse_create_function_body_string(&mut self) -> Result<CreateFunctionBody, ParserError> {
10526-
// Helper closure to parse a single string value (quoted or dollar-quoted)
1052710526
let parse_string_expr = |parser: &mut Parser| -> Result<Expr, ParserError> {
1052810527
let peek_token = parser.peek_token();
1052910528
let span = peek_token.span;

0 commit comments

Comments
 (0)