ASiegeLion opened a new issue, #1289:
URL: https://github.com/apache/auron/issues/1289
**Describe the bug**
<!--
A clear and concise description of what the bug is.
-->
`Execution error: output_with_sender[OrcScan]: output() returns error: Arrow
error: External error: External error: Out of spec, message: over/underflow
when decoding delta integer`
table schema:
`CREATE TABLE blaze.yycomm_ads_mutual_friend_info_d (
uid string ,
toid string ,
mutual_friend_cnt int ,
mutual_friend_list ARRAY<int>
)
PARTITIONED BY (
dt string
)
ROW FORMAT
SERDE 'org.apache.hadoop.hive.ql.io.orc.OrcSerde'
WITH SERDEPROPERTIES (
'serialization.format' = '1'
)
STORED AS
INPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcInputFormat'
OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat'`
execute sql :
`SELECT
SUM(
CAST(
crc32(
CONCAT_WS(
CHAR(1),
COALESCE(CAST(uid AS STRING), CHAR(0)),
COALESCE(CAST(toid AS STRING), CHAR(0)),
COALESCE(CAST(mutual_friend_cnt AS STRING), CHAR(0)),
COALESCE(CAST( SORT_ARRAY(mutual_friend_list) AS STRING),
CHAR(0)) )
)
AS DECIMAL(19, 0)
)
) AS total_checksum
FROM
blaze.yycomm_ads_mutual_friend_info_d
WHERE dt = '2025-09-08'`
**To Reproduce**
<!--
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
-->
**Expected behavior**
<!--
A clear and concise description of what you expected to happen.
-->
**Screenshots**
<!--
If applicable, add screenshots to help explain your problem.
-->
**Additional context**
<!--
Add any other context about the problem here.
-->
--
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]