Open darlentar opened 4 years ago
Can't you remember anything about the context that could be useful here?
Worker test_intparsing12/csv (pid 7839) killed by signal ABORT.
What does gdb have to say about the coredump of this worker?
Ideally, any step to repro it?
Used command:
NDEBUG=1 make src/ramen -j32 && src/ramen test ~/ramenprg/test_intparsing12.test
with the following files:
± % cat ~/ramenprg/test_intparsing12.ramen !10886
define csv as
READ FROM file "test_intparsing12.csv" as CSV (
s u64);
define prod as
from csv
select
sum globally s as res,
sum globally 1 as sum_
commit after out.sum_ > 12000011;
± % cat ~/ramenprg/test_intparsing12.test
{
programs = [
{ src = "test_intparsing12.ramen" };
];
outputs = {
"test_intparsing12/prod" => {
present = [
{ "sum_" => "12000012"};
];
}
}
}
# 12000012 lines with 1
± % wc -l ~/ramenprg/test_intparsing12.csv
12000012 /home/damien/ramenprg/test_intparsing12.csv