Skip to content

Commit

Permalink
Fix jmh benchmark after #1309 (#1312)
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 authored Dec 15, 2023
1 parent dafdac5 commit c489057
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import org.partiql.jmh.utils.MEASUREMENT_ITERATION_VALUE_RECOMMENDED
import org.partiql.jmh.utils.MEASUREMENT_TIME_VALUE_RECOMMENDED
import org.partiql.jmh.utils.WARMUP_ITERATION_VALUE_RECOMMENDED
import org.partiql.jmh.utils.WARMUP_TIME_VALUE_RECOMMENDED
import org.partiql.parser.PartiQLParserBuilder
import org.partiql.parser.PartiQLParser
import org.partiql.parser.PartiQLParserException
import java.util.concurrent.TimeUnit

Expand Down Expand Up @@ -854,7 +854,7 @@ internal open class PartiQLParserBenchmark {
@State(Scope.Thread)
open class MyState {

val parser = PartiQLParserBuilder.standard().build()
val parser = PartiQLParser.default()

val query15OrsAndLikes = """
SELECT *
Expand Down

0 comments on commit c489057

Please sign in to comment.