forked from extern/nushell
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:
@ -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(
|
||||
|
Reference in New Issue
Block a user