Skip to content
Merged
Changes from 1 commit
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
Next Next commit
fix: Wrap LocalOutputNode return value in ArrowTableValue for consist…
…ent DAG output

Signed-off-by: cutoutsy <cutoutsy@gmail.com>
  • Loading branch information
cutoutsy authored and ntkathole committed Apr 16, 2026
commit a925c5fd19a86d0af9cc5153a99407aef91b915a
7 changes: 4 additions & 3 deletions sdk/python/feast/infra/compute_engines/local/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,11 @@ def __init__(

def execute(self, context: ExecutionContext) -> ArrowTableValue:
input_table = self.get_single_table(context).data
context.node_outputs[self.name] = input_table
output = ArrowTableValue(data=input_table)
context.node_outputs[self.name] = output

if input_table.num_rows == 0:
return input_table
return output

if self.feature_view.online:
online_store = context.online_store
Expand Down Expand Up @@ -403,4 +404,4 @@ def execute(self, context: ExecutionContext) -> ArrowTableValue:
progress=lambda x: None,
)

return input_table
return output