Michael-J-Ward commented on PR #905: URL: https://github.com/apache/datafusion-python/pull/905#issuecomment-2442642237
For context on the `SmoothTwoColumn` test. On this branch, the `values` argument passed into `SmoothTwoColumn.evaluate_all` ```python > /home/mike/workspace/datafusion-python/dev/python/tests/test_udwf.py(143)evaluate_all() -> results = [] (Pdb) values [<pyarrow.lib.Int64Array object at 0x7fff8ec772e0> [ 0, 1, 2, 3, 4, 5, 6 ]] ``` On `main`, it contains both `a` and `b` columns: ``` > /home/mike/workspace/datafusion-python/main/python/tests/test_udwf.py(143)evaluate_all() -> values_a = values[0] (Pdb) values [<pyarrow.lib.Int64Array object at 0x7fffe8dcb700> [ 0, 1, 2, 3, 4, 5, 6 ], <pyarrow.lib.Int64Array object at 0x7fffe8dcbd60> [ 7, 4, 3, 8, 9, 1, 6 ]] (Pdb) c ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org