Skip to content

Commit d9a7491

Browse files
committed
Various follow-ups to recent pushes
- Update CHANGELOG - Update `.gitignore` for the build directory of the benchmark crate - Remove src/lib from the recently added benchmark crate per https://github.com/andygrove/sqlparser-rs/pull/190#pullrequestreview-425835379
1 parent 846c52f commit d9a7491

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Generated by Cargo
22
# will have compiled files and executables
33
/target/
4+
/sqlparser_bench/target/
45

56
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
67
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Check https://github.com/andygrove/sqlparser-rs/commits/master for undocumented
1212
- **`Parser::parse_sql` now accepts a `&str` instead of `String` (#182)** - thanks @Dandandan!
1313
- Change `Ident` (previously a simple `String`) to store the parsed (unquoted) `value` of the identifier and the `quote_style` separately (#143) - thanks @apparebit!
1414
- Support Snowflake's `FROM (table_name)` (#155) - thanks @eyalleshem!
15+
- Add line and column number to TokenizerError (#194) - thanks @Dandandan!
16+
- Make the units keyword following `INTERVAL '...'` optional (#184) - thanks @maxcountryman!
1517

1618
### Added
1719
- Support MSSQL `TOP (<N>) [ PERCENT ] [ WITH TIES ]` (#150) - thanks @alexkyllo!

sqlparser_bench/src/lib.rs

-7
This file was deleted.

0 commit comments

Comments
 (0)