We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When loading a SQLite database that has a view using the unixepoch function, the CLI bails on every call.
Catalog Error: Scalar Function with name unixepoch does not exist! Did you mean "union_extract"?
Create a test database
sqlite3 test.db
Setup the schema
CREATE TABLE whoops (time INTEGER); INSERT INTO whoops VALUES ('2024-09-12'); CREATE VIEW ts AS SELECT unixepoch(time) FROM whoops; SELECT * FROM ts;
Open with DuckDB
duckdb test.db
Run any operation:
SHOW TABLES;
macOS
3.41.2
1.1.0
CLI
Chris Boden
I am using this for a hobby application: https://brewed.today
main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happens?
When loading a SQLite database that has a view using the unixepoch function, the CLI bails on every call.
To Reproduce
Create a test database
Setup the schema
Open with DuckDB
Run any operation:
OS:
macOS
SQLite Version:
3.41.2
DuckDB Version:
1.1.0
DuckDB Client:
CLI
Full Name:
Chris Boden
Affiliation:
I am using this for a hobby application: https://brewed.today
Have you tried this on the latest
main
branch?Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
The text was updated successfully, but these errors were encountered: