├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── bors.toml ├── examples ├── README.md ├── jolt.yaml └── short.yaml ├── src ├── bind.rs ├── consume.rs ├── lib.rs ├── partition.rs ├── topic.rs ├── wrapper.c └── wrapper.h └── toolchain.toml /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/README.md -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/bors.toml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/jolt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/examples/jolt.yaml -------------------------------------------------------------------------------- /examples/short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/examples/short.yaml -------------------------------------------------------------------------------- /src/bind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/bind.rs -------------------------------------------------------------------------------- /src/consume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/consume.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/partition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/partition.rs -------------------------------------------------------------------------------- /src/topic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/topic.rs -------------------------------------------------------------------------------- /src/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infinyon/fluvio-duck/HEAD/src/wrapper.c -------------------------------------------------------------------------------- /src/wrapper.h: -------------------------------------------------------------------------------- 1 | #define DUCKDB_EXTENSION_API 2 | #include "duckdb.h" 3 | -------------------------------------------------------------------------------- /toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "stable-2023-01-24" 3 | --------------------------------------------------------------------------------