-
Notifications
You must be signed in to change notification settings - Fork 0
Support duckdb #22
New issue
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
Support duckdb #22
Conversation
sqlancer/Dockerfile
Outdated
|
|
||
| WORKDIR /root/sqlancer | ||
|
|
||
| ARG DUCKDB_JDBC_VERSION=1.3.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmmm, is it hardcode or? I find it doesn't match the 1.2.2.0 in config
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return to the original version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if we should make the DuckDB components in the SQLancer Dockerfile. i.e., if we have more DBs, we might make this file very messy. Perhaps alternatively, we can have a 'fork' of the SQLancer Dockerfile in the duckdb folder?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add customized dockerfile to duckdb/
duckdb/config.json
Outdated
| "embedded": "yes", | ||
| "dbms": "duckdb", | ||
| "version": "1.2.2.0", | ||
| "username": "N/A", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this entry or we can also remove it with no hurt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove "version"
Support duckdb testing by using Versions Plugin to modify pom.xml while building sqlancer image.
Closes #18