-
Notifications
You must be signed in to change notification settings - Fork 32
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
Feature: Driver - duckdb #43
Conversation
75842ab
to
21d7293
Compare
Codecov ReportBase: 92.59% // Head: 92.67% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## fix/response-streams #43 +/- ##
========================================================
+ Coverage 92.59% 92.67% +0.08%
========================================================
Files 222 224 +2
Lines 3051 3098 +47
Branches 351 358 +7
========================================================
+ Hits 2825 2871 +46
- Misses 165 166 +1
Partials 61 61
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
21d7293
to
fc25b8a
Compare
a3ac76f
to
1d639d2
Compare
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.
Beside some parts, others LGTM 👍
labs/playground1/Makefile
Outdated
|
||
# build the required packages | ||
build: pkg-core pkg-build pkg-serve pkg-cli | ||
build: pkg-core pkg-build pkg-serve pkg-cli pkg-serve pkg-extension-driver-duckdb |
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.
why execute pkg-serve
twice ( after the pkg-cli
), is it a typo?
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.
Yes, typo here, thanks!
types/duckdb.d.ts
Outdated
*/ | ||
run(sql: string, ...params: any): void; // This last parameter should be callback function. | ||
/** | ||
* Convenience method for Connection#apply using a built-in default connection |
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.
Should be Connection#all
?
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.
Yes, thanks.
1d639d2
to
7baecda
Compare
Hi @kokokuo , all issues have been fixed. |
Driver for duckdb
Document:
https://github.com/Canner/vulcan/tree/feature/driver-duckdb/packages/extension-driver-duckdb
I deleted the extension for lab env because it can use this driver instead.