We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeea1f5 commit 0633711Copy full SHA for 0633711
lib/DBDish/Pg/StatementHandle.pm6
@@ -115,13 +115,13 @@ method _row(:$hash) {
115
$value = $res.Real
116
}
117
when 'Array<Int>' {
118
- $value = _pg-to-array( $res, 'Int' );
+ $value := _pg-to-array( $res, 'Int' );
119
120
when 'Array<Str>' {
121
- $value = _pg-to-array( $res, 'Str' );
+ $value := _pg-to-array( $res, 'Str' );
122
123
when 'Array<Num>' {
124
- $value = _pg-to-array( $res, 'Num' );
+ $value := _pg-to-array( $res, 'Num' );
125
126
default {
127
$value = $res;
0 commit comments