Details
-
Bug
-
Status: Confirmed (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.11, 11.4, 11.8, 12.3
Description
Hi,
In the following test case, the two arguments of JSON_OVERLAPS and JSON_CONTAINS are different; however, these four statements all return 1.
SELECT JSON_OVERLAPS('9007199254740992','9007199254740993'); -- 1 |
SELECT JSON_OVERLAPS('[9007199254740992]','[9007199254740993]'); -- 1 |
SELECT JSON_CONTAINS('9007199254740992','9007199254740993'); -- 1 |
SELECT JSON_CONTAINS('[9007199254740992]','9007199254740993'); --1 |