Improve parsing performance by reducing token cloning (#1587)

Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
Paul J. Davis 2024-12-24 16:19:35 -06:00 committed by GitHub
parent 024a878ee7
commit df3c5652b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 344 additions and 244 deletions

View file

@ -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).