Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/python/feast/type_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def pa_to_feast_value_type(pa_type_as_str: str) -> ValueType:
elif pa_type_as_str.startswith("map<"):
value_type = ValueType.MAP
elif pa_type_as_str == "large_string":
value_type = ValueType.STRING
value_type = ValueType.JSON
elif pa_type_as_str.startswith("struct<") or pa_type_as_str.startswith("struct{"):
value_type = ValueType.STRUCT
else:
Expand Down
5 changes: 4 additions & 1 deletion sdk/python/tests/integration/dbt/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ def pytest_collection_modifyitems(config, items): # noqa: ARG001
reason="dbt manifest.json not found - run 'dbt build' first or use dbt-integration-test workflow"
)
for item in items:
item.add_marker(skip_marker)
if str(TEST_DBT_PROJECT_DIR) in str(item.fspath) or "/dbt/" in str(
item.fspath
):
item.add_marker(skip_marker)
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_apply_with_fv_inference() -> None:

fs = store.get_feature_service("all_stats")
assert len(fs.feature_view_projections) == 2
assert len(fs.feature_view_projections[0].features) == 3
assert len(fs.feature_view_projections[0].features) == 6
assert len(fs.feature_view_projections[0].desired_features) == 0
assert len(fs.feature_view_projections[1].features) == 2
assert len(fs.feature_view_projections[1].desired_features) == 0
Expand Down
Loading