-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Duckdb add branch_alpha #2369
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
Open
weidqi
wants to merge
25
commits into
drogonframework:master
Choose a base branch
from
weidqi:duckdb-add-branch
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Duckdb add branch_alpha #2369
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
c451a4e
初始化duckdb的两种实现目录
weidqi 35c3cfe
添加sqlite_api_wrapper源代码到工程,2025-07-03晚于沙特吉达
weidqi 28f96d7
添加sqlite_wrapper源代码,编译通过
weidqi e03d948
初步实现了duckdb wrapper,有待进一步测试
weidqi cc5fae8
修改SqlBinder,增加对ClientType::DuckDB的处理逻辑
weidqi 6c01a8a
Added comprehensive test cases.
weidqi 5a85d8a
fixed some bug.
weidqi 1dfad64
Lint
an-tao 7abc38b
More lint
an-tao 2db43f4
为 Drogon 框架添加 DuckDB 数据库支持,使用原生c api
weidqi cf42232
功能增强:DuckDB 配置参数灵活化支持
weidqi d171eda
Merge branch 'drogonframework:master' into duckdb-add-branch
weidqi b73a47e
同步主版本
weidqi 20f9261
Update .gitignore
weidqi 2505553
Update orm_lib/tests/db_test.cc
weidqi 11ce913
Update orm_lib/src/DbClientImpl.cc
weidqi b1d0d89
Update orm_lib/src/duckdb_impl/DuckdbConnection.cc
weidqi 72640f7
Update orm_lib/src/duckdb_impl/readme.md
weidqi 6dabe7b
Update orm_lib/src/duckdb_impl/changelog.md
weidqi 6599b0e
Update CMakeLists.txt
weidqi 9076552
The reviewer's comments and suggestions have been incorporated.
weidqi c3174f9
Adjusted some settings to resolve a local build issue for: COMMAND $<…
weidqi ec22479
configure modify
weidqi fe1f72c
Remove trantor
weidqi 0b0c449
DuckDB 避免连接打开失败时出现自线程 `EventLoopThread` 析构与后续堆损坏
weidqi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| cmake_minimum_required(VERSION 3.5) | ||
| project(UUIDTests CXX) | ||
|
|
||
| # This CMakeLists.txt is used by try_compile to test UUID library variants | ||
| add_executable(normal_uuid_lib_test normal_uuid_lib_test.cc) | ||
| add_executable(ossp_uuid_lib_test ossp_uuid_lib_test.cc) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This should be handled in
FindDuckDB.