dentiny
dentiny
A couple of things we need for a v0.3.0 release: - [x] Upgrade duckdb to v1.3.0 - [ ] Duckdb moves most of the HTTP related code from httpfs extension...
**Describe the bug** Debug build fails on M4 with linker failure. Error message: ```sh CMakeFiles/loadable_extension_optimizer_demo_loadable_extension.dir/loadable_extension_optimizer_demo.cpp.o: in function __gnu_cxx::__exchange_and_add(int volatile*, int)': /usr/include/c++/11/ext/atomicity.h:66:(.text._ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv[_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv]+0x280): relocation truncated to fit: R_AARCH64_CALL26 against symbol __aarch64_ldadd4_acq_rel' defined...
**Describe the bug** ```sql D EXPLAIN ANALYZE SELECT COUNT(*) FROM read_parquet( 's3://s3-bucket-user-2rjzcciup4s13v49vuoedxrxpsy--use1-az6--x-s3/mooncake_neondb_similar_web_ordered_two_122921/*.parquet' ) WHERE tamr_id = 'tamr_9650a9d8e59b8e87e4b066f5'; Invalid Error: TProtocolException: Invalid data ``` **Expected behavior** Using httpfs runs with no...
**Is your feature request related to a problem? Please describe.** Duckdb changes interface for `Glob` from a vector of object path to file information (object stats); we need to update...
**Is your feature request related to a problem? Please describe.** I'm debugging a production issue, more or less related to duckdb httpfs; I cannot explain the high GET request count...
**Is your feature request related to a problem? Please describe.** N/A **Describe the solution you'd like** Allow clang-tidy to the project, likely we could mimic what pg_duckdb does: https://github.com/duckdb/pg_duckdb/blob/7e0edc85a355eab49be259d0941995089bfcddcc/Makefile#L136 **Describe...
duckdb rarely changes during the development of extension, there're two things here: - `make clean` should only delete extension binaries; - provide another command (i.e. `make clean-duckdb`) which applies to...
At the moment, when we compile the extension we get a bunch of compilation warnings, mostly because we're using g++ C++11 standard, but codebase's leveraging C++17 feature (for code simplicity)....
As of now, unrelated and useless targets within duckdb is also compiled, for example, `unittest` and `test_sqlite3_api_wrapper`, and degrade compilation speed a lot. We should be able to tweak cmake...
**Is your feature request related to a problem? Please describe.** C++17 provides a few decent and useful features, and also reduces compilation warnings. **Describe the solution you'd like** Resolve all...