fixed compile error

This commit is contained in:
Evan Tschannen 2020-09-22 20:27:10 -07:00
parent 814df222b9
commit 850ec6aa43
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ struct SpecialKeySpaceCorrectnessWorkload : TestWorkload {
Future<Void> f;
{
ReadYourWritesTransaction ryw{ cx->clone() };
if(!ryw->getDatabase()->apiVersionAtLeast(630)) {
if(!ryw.getDatabase()->apiVersionAtLeast(630)) {
//This test is not valid for API versions smaller than 630
return;
}