Skip to content

Commit

Permalink
Merge pull request #11 from fuyutarow/math
Browse files Browse the repository at this point in the history
Add ORDER BY and LIMIT to the query
  • Loading branch information
fuyutarow authored Jun 8, 2021
2 parents 8a5d755 + 4247997 commit 7e6679b
Show file tree
Hide file tree
Showing 18 changed files with 51,633 additions and 354 deletions.
26 changes: 0 additions & 26 deletions examples/de.rs

This file was deleted.

3 changes: 1 addition & 2 deletions examples/parse_sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ fn main() -> anyhow::Result<()> {
let input = r#"
SELECT e.id,
e.name AS employeeName,
UPPER(e.title) AS outputTitle
FROM hr.employeesWithMissing AS e
UPPER(e.title) AS outputTitle FROM hr.employeesWithMissing AS e
"#;
let sql = parser::parse_sql(&input)?;
Expand Down
Loading

0 comments on commit 7e6679b

Please sign in to comment.