duckdb-quack
No description available.
File Explorer
Download Latest Version (.zip)- MainDistributionPipeline.yml
- duckdb-version
- benchmark-batch.py
- benchmark-transactions.py
- UPDATING.md
- usage.md
- extension-upload.sh
- test_concurrent.py
- quack_catalog.hpp
- quack_catalog_set.hpp
- quack_insert.hpp
- quack_optimizer.hpp
- quack_schema.hpp
- quack_table.hpp
- quack_transaction.hpp
- quack_transaction_manager.hpp
- quack_view.hpp
- quack_active_connections.hpp
- quack_cancel.hpp
- quack_claim_buffer.hpp
- quack_clear_cache.hpp
- quack_client.hpp
- quack_data_stream.hpp
- quack_extension.hpp
- quack_fetch_ahead.hpp
- quack_fetch_collector.hpp
- quack_log.hpp
- quack_message.hpp
- quack_message.json
- quack_periodic_worker.hpp
- quack_rebalancer_core.hpp
- quack_rebalancer_sink.hpp
- quack_result_cache.hpp
- quack_scan.hpp
- quack_scan_from_client.hpp
- quack_server.hpp
- quack_startstop.hpp
- quack_storage.hpp
- quack_uri.hpp
- CMakeLists.txt
- quack_catalog.cpp
- quack_catalog_set.cpp
- quack_insert.cpp
- quack_optimizer.cpp
- quack_schema.cpp
- quack_table.cpp
- quack_transaction.cpp
- quack_transaction_manager.cpp
- quack_view.cpp
- CMakeLists.txt
- quack_active_connections.cpp
- quack_cancel.cpp
- quack_clear_cache.cpp
- quack_client.cpp
- quack_data_stream.cpp
- quack_extension.cpp
- quack_fetch_ahead.cpp
- quack_fetch_collector.cpp
- quack_http_server.cpp
- quack_log.cpp
- quack_message.cpp
- quack_rebalancer_core.cpp
- quack_rebalancer_sink.cpp
- quack_result_cache.cpp
- quack_scan.cpp
- quack_scan_from_client.cpp
- quack_server.cpp
- quack_start_stop.cpp
- quack_storage.cpp
- quack_uri.cpp
- serialize_quack_message.cpp
- remote_pushdown_advanced.test
- remote_pushdown_basic.test
- remote_pushdown_catalog.test
- remote_pushdown_catalog_stripping.test
- remote_pushdown_cte.test
- remote_pushdown_ddl.test
- remote_pushdown_dml.test
- remote_pushdown_dml_local.test
- remote_pushdown_dml_using_from.test
- remote_pushdown_join.test
- remote_pushdown_merge.test
- remote_pushdown_mixed.test
- remote_pushdown_multi_catalog.test
- remote_pushdown_returning.test
- remote_pushdown_returning_local.test
- remote_pushdown_searchpath.test
- remote_pushdown_set_operations.test
- remote_pushdown_set_ops.test
- remote_pushdown_subquery.test
- remote_pushdown_subquery_scope.test
- remote_pushdown_tpch.test_slow
- attach.test
- attach_ctas.test
- attach_fetch_large.test_slow
- attach_insert.test
- attach_insert_order.test
- attach_transactions.test
- attach_views.test
- authn_swap.test
- cancellations.test
- clear_cache.test
- duckdb_databases.test
- fetch_async.test
- fetch_cancel_insert.test
- fetch_error.test
- fetch_head_of_line.test
- fetch_projection.test
- heartbeat_config.test
- heartbeat_lifecycle.test
- logging.test
- lookup_overwrite.test
- pgbench.test
- pragma_crash.test
- pushdown.test
- quack_active_connections.test
- quack_clientid_hash_unforgeable.test
- quack_default_client_id.test
- quack_default_client_id_env.test
- reconnects.test
- reconnects_ack_best_effort.test
- reconnects_parallel.test
- result_cache.test
- result_cache_multi.test
- result_cache_read_ahead.test
- result_cache_spill.test
- result_ttl.test
- result_ttl_overflow.test
- result_ttl_releases_query.test
- rpc.test
- rpc_call_projection.test
- secret.test
- secret_rpc_call.test
- self_stop.test
- serve_canonical.test
- server_connection_limits.test
- server_list.test
- token_validation.test
- uri.test
- whoami.test
- quack_setup.test_template
- quack_teardown.test_template
- README.md
- .clang-format
- .clang-tidy
- .editorconfig
- .gitignore
- .gitmodules
- benchmark.py
- CMakeLists.txt
- duckdb
- extension-ci-tools
- extension_config.cmake
- LICENSE
- macbook.tsv
- Makefile
- plot.R
- query.py
- README.md
- rpc.pdf
- vcpkg.json
# Installation Guide
1. Get the code
git clone https://github.com/duckdb/duckdb-quack
Downloads the entire project code from GitHub to your computer.
cd duckdb-quack
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
export VCPKG_TOOLCHAIN_PATH=`pwd`/vcpkg/scripts/buildsystems/vcpkg.cmake
Type this command into your terminal and run it.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
Pulled directly from this repo's README.
3. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make setup-vcpkg
Compiles the code based on the generated build configuration to produce an executable.
make
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
