update sql-parser crate and all the files it touches (#6566)

* update sql-parser crate and all the files it touches

* undo adding extra as a default feature
This commit is contained in:
Darren Schroeder
2022-09-15 18:03:43 -05:00
committed by GitHub
parent 10b9c65cb7
commit f0ae6ffe12
15 changed files with 47 additions and 23 deletions

View File

@ -184,7 +184,7 @@ impl SQLContext {
.ok_or_else(|| PolarsError::NotFound("No statement found".to_string()))?;
Ok(match ast {
Statement::Query(query) => {
let rs = match &query.body {
let rs = match &*query.body {
SetExpr::Select(select_stmt) => self.execute_select(&*select_stmt)?,
_ => {
return Err(PolarsError::ComputeError(