@@ -171,15 +171,15 @@ public void smokeTest() {
171171 if (proxySerialVersion <= V4 ) {
172172 assertNull (pr .getExistingVersion ());
173173 assertNull (pr .getExistingValue ());
174- if (checkKVVersion (25 , 3 , 1 )) {
174+ if (checkKVVersion (26 , 1 , 1 )) {
175175 assertEquals (0 , pr .getExistingCreationTime ());
176176 }
177177 assertEquals (0 , pr .getExistingModificationTime ());
178178 assertWriteKB (pr );
179179 } else {
180180 assertNotNull (pr .getExistingVersion ());
181181 assertNotNull (pr .getExistingValue ());
182- if (checkKVVersion (25 , 3 , 1 )) {
182+ if (checkKVVersion (26 , 1 , 1 )) {
183183 assertTrue (pr .getExistingCreationTime () != 0 );
184184 }
185185 assertTrue (pr .getExistingModificationTime () != 0 );
@@ -192,7 +192,7 @@ public void smokeTest() {
192192 assertNull (pr .getVersion ()); /* failure */
193193 assertNotNull (pr .getExistingVersion ());
194194 assertNotNull (pr .getExistingValue ());
195- if (checkKVVersion (25 , 3 , 1 )) {
195+ if (checkKVVersion (26 , 1 , 1 )) {
196196 assertTrue (pr .getExistingCreationTime () != 0 );
197197 }
198198 assertTrue (pr .getExistingModificationTime () != 0 );
@@ -277,7 +277,7 @@ public void testSimpleThroughput() throws Exception {
277277 assertEquals (0 , origRead );
278278 assertNull ("Not expecting previous version" , res .getExistingVersion ());
279279 assertNull ("Not expecting previous value" , res .getExistingValue ());
280- if (checkKVVersion (25 , 3 , 1 )) {
280+ if (checkKVVersion (26 , 1 , 1 )) {
281281 assertEquals (0 , res .getExistingCreationTime ());
282282 }
283283 assertEquals (0 , res .getExistingModificationTime ());
@@ -294,7 +294,7 @@ public void testSimpleThroughput() throws Exception {
294294 assertEquals (0 , newRead );
295295 assertNull ("Not expecting previous version" , res .getExistingVersion ());
296296 assertNull ("Not expecting previous value" , res .getExistingValue ());
297- if (checkKVVersion (25 , 3 , 1 )) {
297+ if (checkKVVersion (26 , 1 , 1 )) {
298298 assertEquals (0 , res .getExistingCreationTime ());
299299 }
300300 assertEquals (0 , res .getExistingModificationTime ());
@@ -310,7 +310,7 @@ public void testSimpleThroughput() throws Exception {
310310 assertEquals (0 , newRead );
311311 assertNull ("Not expecting previous version" , res .getExistingVersion ());
312312 assertNull ("Not expecting previous value" , res .getExistingValue ());
313- if (checkKVVersion (25 , 3 , 1 )) {
313+ if (checkKVVersion (26 , 1 , 1 )) {
314314 assertEquals (0 , res .getExistingCreationTime ());
315315 }
316316 assertEquals (0 , res .getExistingModificationTime ());
@@ -319,7 +319,7 @@ public void testSimpleThroughput() throws Exception {
319319 assertNotNull ("Expecting previous version" ,
320320 res .getExistingVersion ());
321321 assertNotNull ("Expecting previous value" , res .getExistingValue ());
322- if (checkKVVersion (25 , 3 , 1 )) {
322+ if (checkKVVersion (26 , 1 , 1 )) {
323323 assertTrue (res .getExistingCreationTime () != 0 );
324324 }
325325 assertTrue (res .getExistingModificationTime () != 0 );
@@ -341,7 +341,7 @@ public void testSimpleThroughput() throws Exception {
341341 assertNotNull ("Expecting previous version" ,
342342 res .getExistingVersion ());
343343 assertNotNull ("Expecting previous value" , res .getExistingValue ());
344- if (checkKVVersion (25 , 3 , 1 )) {
344+ if (checkKVVersion (26 , 1 , 1 )) {
345345 assertTrue (res .getExistingCreationTime () != 0 );
346346 }
347347 assertTrue (res .getExistingModificationTime () != 0 );
@@ -1699,7 +1699,7 @@ private void checkPutResult(PutRequest request,
16991699 checkExistingValueVersion (request , result , shouldSucceed , rowPresent ,
17001700 expPrevValue , expPrevVersion );
17011701
1702- if (checkKVVersion (25 , 3 , 1 )) {
1702+ if (checkKVVersion (26 , 1 , 1 )) {
17031703 checkRecentTime (result .getExistingCreationTime (), modTimeRecent );
17041704 }
17051705 checkRecentTime (result .getExistingModificationTime (), modTimeRecent );
@@ -1718,7 +1718,7 @@ private void checkDeleteResult(DeleteRequest request,
17181718 shouldSucceed , result .getSuccess ());
17191719 checkExistingValueVersion (request , result , shouldSucceed , rowPresent ,
17201720 expPrevValue , expPrevVersion );
1721- if (checkKVVersion (25 , 3 , 1 )) {
1721+ if (checkKVVersion (26 , 1 , 1 )) {
17221722 checkRecentTime (result .getExistingCreationTime (), modTimeRecent );
17231723 }
17241724 checkRecentTime (result .getExistingModificationTime (), modTimeRecent );
@@ -1750,7 +1750,7 @@ private void checkGetResult(GetRequest request,
17501750 assertNull ("Unexpected value" , expValue );
17511751 assertNull ("Unexpected version" , result .getVersion ());
17521752 }
1753- if (checkKVVersion (25 , 3 , 1 )) {
1753+ if (checkKVVersion (26 , 1 , 1 )) {
17541754 checkRecentTime (result .getCreationTime (), modTimeRecent );
17551755 }
17561756 checkRecentTime (result .getModificationTime (), modTimeRecent );
0 commit comments