File tree 3 files changed +33
-0
lines changed
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,18 @@ Our goal as maintainers is to facilitate the integration
210
210
of various features from various contributors, but not to provide the
211
211
implementations ourselves, as we simply don't have the resources.
212
212
213
+ ### Benchmarking
214
+
215
+ There are several micro benchmarks in the ` sqlparser_bench ` directory.
216
+ You can run them with:
217
+
218
+ ```
219
+ git checkout main
220
+ cd sqlparser_bench
221
+ cargo bench
222
+ git checkout <your branch>
223
+ cargo bench
224
+ ```
213
225
214
226
## Licensing
215
227
Original file line number Diff line number Diff line change 17
17
18
18
[package ]
19
19
name = " sqlparser_bench"
20
+ description = " Benchmarks for sqlparser"
20
21
version = " 0.1.0"
21
22
authors = [
" Dandandan <[email protected] >" ]
22
23
edition = " 2018"
Original file line number Diff line number Diff line change
1
+ <!-- -
2
+ Licensed to the Apache Software Foundation (ASF) under one
3
+ or more contributor license agreements. See the NOTICE file
4
+ distributed with this work for additional information
5
+ regarding copyright ownership. The ASF licenses this file
6
+ to you under the Apache License, Version 2.0 (the
7
+ "License"); you may not use this file except in compliance
8
+ with the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing,
13
+ software distributed under the License is distributed on an
14
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ KIND, either express or implied. See the License for the
16
+ specific language governing permissions and limitations
17
+ under the License.
18
+ -->
19
+
20
+ Benchmarks for sqlparser. See [ the main README] ( ../README.md ) for more information.
You can’t perform that action at this time.
0 commit comments