Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- DuckDB database support — connect to `.duckdb` files, query CSV/Parquet/JSON files via SQL, schema navigation, and DuckDB extension management

### Fixed

- Result truncation at 100K rows now reported to UI via `PluginQueryResult.isTruncated` instead of being silently discarded
Expand Down
1 change: 1 addition & 0 deletions Libs/libduckdb.a
3 changes: 3 additions & 0 deletions Libs/libduckdb_arm64.a
Git LFS file not shown
3 changes: 3 additions & 0 deletions Libs/libduckdb_universal.a
Git LFS file not shown
3 changes: 3 additions & 0 deletions Libs/libduckdb_x86_64.a
Git LFS file not shown
11 changes: 11 additions & 0 deletions Plugins/DuckDBDriverPlugin/CDuckDB/CDuckDB.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
//
// CDuckDB.h
// TablePro
//

#ifndef CDuckDB_h
#define CDuckDB_h

#include "include/duckdb.h"

#endif /* CDuckDB_h */
Loading