You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed when attempting to reproduce #9755 the initial query in that issue does not work when run against current main branch:
❯ docker build -f datafusion-cli/Dockerfile . --tag datafusion-cli
...
❯ docker run -it -v /tmp:/data datafusion-cli
DataFusion CLI v37.1.0
> CREATE
OR REPLACE TABLE pricing AS
SELECT
t,
RANDOM() as v
FROM
range(
'2022-01-01' :: TIMESTAMP,
'2023-01-01' :: TIMESTAMP,
INTERVAL 1 DAY
) ts(t);
Error during planning: table function 'range' not found
To Reproduce
Build and start CLI, run query.
Expected behavior
Query should succeed.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Noticed when attempting to reproduce #9755 the initial query in that issue does not work when run against current main branch:
To Reproduce
Build and start CLI, run query.
Expected behavior
Query should succeed.
Additional context
No response
The text was updated successfully, but these errors were encountered: