Skip to content

Commit 14495af

Browse files
authored
[Fix] the ObTableClientAutoIncTest.testAutoIncrementNotRowkey testcase (#149)
1 parent 87d7f84 commit 14495af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/alipay/oceanbase/rpc/ObTableClientAutoIncTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public void testAutoIncrementNotRowkey() throws Exception {
510510
result = tableQuery.execute();
511511
Assert.assertTrue(result.next());
512512
value = result.getRow();
513-
Assert.assertEquals((byte) 106, value.get("c3"));
513+
Assert.assertEquals((byte) 105, value.get("c3"));
514514
Assert.assertEquals("a", value.get("c4"));
515515

516516
// test append exist, append
@@ -524,7 +524,7 @@ public void testAutoIncrementNotRowkey() throws Exception {
524524
result = tableQuery.execute();
525525
Assert.assertTrue(result.next());
526526
value = result.getRow();
527-
Assert.assertEquals((byte) 106, value.get("c3"));
527+
Assert.assertEquals((byte) 105, value.get("c3"));
528528
Assert.assertEquals("ab", value.get("c4"));
529529

530530
// the total number of data

0 commit comments

Comments
 (0)