These tests are main.func_json and json.json_no_table
Both tests fail on running similar queries that use JSON function json_contains_path().
The test main.func_json fails on running the following statement
PREPARE stmt FROM "select json_contains_path('{\"key1\":1}', 'oNE', '$.key2[1]') as exp";
|
EXECUTE stmt;
|
EXECUTE stmt; <<== Attempt to run the statement the second time results in assert hit
|
The test json.json_no_table fails on running the following statement
PREPARE stmt FROM "select json_contains_path('{ \"a\": tru }', 'all', '$' )";
|
EXECUTE stmt;
|
EXECUTE stmt; <<== Attempt to run the statement the second time results in assert hit
|