Describe the bug
I'm working on enabling parse_url in Comet in apache/datafusion-comet#4152 and found some incompatibilities.
SELECT parse_url('', 'PATH');
-- Spark: "" Comet: NULL
SELECT parse_url('http://example.com?foo=bar', 'FILE');
-- Spark: "?foo=bar" Comet: "/?foo=bar"
SELECT parse_url('http://example.com#fragment', 'FILE');
-- Spark: "" Comet: "/"
To Reproduce
No response
Expected behavior
No response
Additional context
No response
Describe the bug
I'm working on enabling
parse_urlin Comet in apache/datafusion-comet#4152 and found some incompatibilities.To Reproduce
No response
Expected behavior
No response
Additional context
No response