in reply to Crash in stack_grow() with SQL::Abstract
It will be called each time an OP being being executed by the interpreter wants to push one or more items onto perl's argument stack. In that line of code, it likely extends it by 1 to push $clauses_aref->[0] and then extends it by the size of the @$bind_aref array. It is most likely crashing due to the latter: so either the array has got extremely large, or the internal state of the array has got corrupted in some fashion.
What version of perl is this, and is it compiled as 32-bit or 64-bit? The commands perl -v and perl -V |grep ivsize should tell you these.
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Crash in stack_grow() with SQL::Abstract
by ikegami (Patriarch) on Jun 03, 2025 at 14:35 UTC | |
|
Re^2: Crash in stack_grow() with SQL::Abstract
by Casey2255 (Initiate) on Jun 03, 2025 at 14:41 UTC | |
by NERDVANA (Priest) on Jun 03, 2025 at 17:55 UTC | |
by Casey2255 (Initiate) on Jun 03, 2025 at 19:04 UTC | |
by dave_the_m (Monsignor) on Jun 04, 2025 at 15:31 UTC | |
by Casey2255 (Initiate) on Jun 04, 2025 at 18:37 UTC |