From a10482c3536bd1868cda734d3ac06afe6ebc8a9a Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Mon, 3 Sep 2018 13:51:52 -0600 Subject: [PATCH] cargo fmt --- src/sqlparser.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sqlparser.rs b/src/sqlparser.rs index 89cb3584..7e11c87c 100644 --- a/src/sqlparser.rs +++ b/src/sqlparser.rs @@ -408,12 +408,12 @@ impl Parser { } /// Parse a literal string -// fn parse_literal_string(&mut self) -> Result { -// match self.next_token() { -// Some(Token::String(ref s)) => Ok(s.clone()), -// other => parser_err!(format!("Expected literal string, found {:?}", other)), -// } -// } + // fn parse_literal_string(&mut self) -> Result { + // match self.next_token() { + // Some(Token::String(ref s)) => Ok(s.clone()), + // other => parser_err!(format!("Expected literal string, found {:?}", other)), + // } + // } /// Parse a SQL datatype (in the context of a CREATE TABLE statement for example) fn parse_data_type(&mut self) -> Result {