[CP]: Oracle json bugfix

This commit is contained in:
wu-xingying
2023-12-27 06:18:35 +00:00
committed by ob-robot
parent a52b801e5f
commit c8647966da
6 changed files with 169 additions and 215 deletions

View File

@ -54,9 +54,9 @@ TEST_F(TestJsonPath, test_is_mysql_terminator_mysql)
for(int i = 0; i < sizeof(ch); ++i)
{
if (i <= 3) {
ASSERT_EQ(true, ObJsonPathUtil::is_mysql_terminator(ch[i]));
ASSERT_EQ(true, ObJsonPathUtil::is_key_name_terminator(ch[i]));
} else {
ASSERT_EQ(false, ObJsonPathUtil::is_mysql_terminator(ch[i]));
ASSERT_EQ(false, ObJsonPathUtil::is_key_name_terminator(ch[i]));
}
}
}