Tim Bunce <[EMAIL PROTECTED]> wrote:
>Actualy I did this instead, as it seems more correct:
>
>@@ -1720,5 +1721,6 @@
> sub execute_for_fetch {
> my ($sth, $fetch_tuple_sub, $tuple_status) = @_;
>- @$tuple_status = () if $tuple_status; # reset the status array
>+ # start with empty status array
>+ ($tuple_status) ? @$tuple_status = () : $tuple_status = undef;But when I try that code it fails the tests I added. Did you apply the patch to the test suite? -- Ed Avis <[EMAIL PROTECTED]>
