14 lines
240 B
SQL
14 lines
240 B
SQL
# name: test/fuzzer/duckfuzz/json_extract_null.test
|
|
# description: JSON Extract NULL
|
|
# group: [duckfuzz]
|
|
|
|
require json
|
|
|
|
statement ok
|
|
PRAGMA enable_verification
|
|
|
|
query I
|
|
SELECT json_extract('hello world', CAST(NULL AS json)) AS c1
|
|
----
|
|
NULL
|