datafusion-table-providers 0.1.0

Extend the capabilities of DataFusion to support additional data sources via implementations of the `TableProvider` trait.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:
	cargo build --all-features

.PHONY: test
test:
	cargo test --all-features

.PHONY: lint
lint:
	cargo clippy --all-features

.PHONY: test-integration
test-integration:
	RUST_LOG=debug cargo test --test integration --no-default-features --features postgres,sqlite,mysql -- --nocapture