Skip to content

Commit 0db0bf6

Browse files
committed
Move table provider out of lib so we can add in scalar udf without confusion
1 parent 4496639 commit 0db0bf6

File tree

6 files changed

+180
-135
lines changed

6 files changed

+180
-135
lines changed

examples/ffi-library/Cargo.lock

Lines changed: 63 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/ffi-library/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
[package]
19-
name = "ffi-table-provider"
19+
name = "datafusion-ffi-library"
2020
version = "0.1.0"
2121
edition = "2021"
2222

@@ -32,5 +32,5 @@ arrow-schema = { version = "54" }
3232
pyo3-build-config = "0.23"
3333

3434
[lib]
35-
name = "ffi_table_provider"
35+
name = "datafusion_ffi_library"
3636
crate-type = ["cdylib", "rlib"]

examples/ffi-library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requires = ["maturin>=1.6,<2.0"]
2020
build-backend = "maturin"
2121

2222
[project]
23-
name = "ffi_table_provider"
23+
name = "datafusion_ffi_library"
2424
requires-python = ">=3.8"
2525
classifiers = [
2626
"Programming Language :: Rust",

examples/ffi-library/python/tests/_test_table_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import pyarrow as pa
1919
from datafusion import SessionContext
20-
from ffi_table_provider import MyTableProvider
20+
from datafusion_ffi_library import MyTableProvider
2121

2222

2323
def test_table_loading():

0 commit comments

Comments
 (0)