neilconway opened a new issue, #25223:
URL: https://github.com/apache/datafusion/issues/25223
### Describe the bug
See #25222 and #25210 for related bugs.
### To Reproduce
```sql
CREATE TABLE t AS VALUES ([1,2,3], [1,2,3], 1), ([4,5,6], [7], 2);
CREATE VIEW v AS SELECT column3 AS id, column1 AS l, NULLIF(column1,
column2) AS nl FROM t;
SELECT id, array_repeat(nl, 2) FROM v ORDER BY id;
-- Arrow error: Invalid argument error: Max offset of 12 exceeds length of
values 6
-- expected: row 1 → [NULL, NULL], row 2 → [[4, 5, 6], [4, 5, 6]]
```
### Expected behavior
_No response_
### Additional context
_No response_
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]