@EnableQueriesWithoutBindParameters - quick-perf/doc GitHub Wiki
Cancels behavior of @DisableQueriesWithoutBindParameters.
See the PostgreSQL “bind variable peeking” paper from Franck Pachot.
:wrench: Elements
Name | Type | Meaning | Default value |
---|---|---|---|
comment | String | To comment on the reason why SQL queries without bind parameters are enabled. | - |
:mag_right: Example
@DisableQueriesWithoutBindParameters(comment = "Skewed data")
@Test
public void execute() {
...
}