File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
* Spellcheck
3
3
* Fix Makefile rules for Changes (Windows case issue)
4
4
* Another example to bind columns (issue#159)
5
+ * Fix fetchall_arrayref for undefined NAME (issue#156)
5
6
6
7
1.646 - 2025-01-11, H.Merijn Brand
7
8
* Remove "experimental" tag from statistics_info () (issue#134)
Original file line number Diff line number Diff line change @@ -2078,7 +2078,7 @@ sub _new_sth { # called by DBD::<drivername>::db::prepare)
2078
2078
}
2079
2079
}
2080
2080
else {
2081
- my @column_names = @{ $sth -> FETCH($sth -> FETCH(' FetchHashKeyName' )) };
2081
+ my @column_names = @{ $sth -> FETCH($sth -> FETCH(' FetchHashKeyName' )) || [] };
2082
2082
return [] if !@column_names ;
2083
2083
2084
2084
$sth -> bind_columns( \( @row {@column_names } ) );
Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ Fix Makefile rules for Changes (Windows case issue)
28
28
29
29
Another example to bind columns (issue#159)
30
30
31
+ =item *
32
+
33
+ Fix fetchall_arrayref for undefined NAME (issue#156)
34
+
31
35
=back
32
36
33
37
=head2 Changes in DBI 1.646 - 11 Jan 2025
You can’t perform that action at this time.
0 commit comments