mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 14:28:22 +00:00
Improve parsing performance by reducing token cloning (#1587)
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
parent
024a878ee7
commit
df3c5652b1
6 changed files with 344 additions and 244 deletions
|
@ -240,11 +240,14 @@ You can run them with:
|
|||
```
|
||||
git checkout main
|
||||
cd sqlparser_bench
|
||||
cargo bench
|
||||
cargo bench -- --save-baseline main
|
||||
git checkout <your branch>
|
||||
cargo bench
|
||||
cargo bench -- --baseline main
|
||||
```
|
||||
|
||||
By adding the `--save-baseline main` and `--baseline main` you can track the
|
||||
progress of your improvements as you continue working on the feature branch.
|
||||
|
||||
## Licensing
|
||||
|
||||
All code in this repository is licensed under the [Apache Software License 2.0](LICENSE.txt).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue