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 8f9cbab commit ff18c33Copy full SHA for ff18c33
src/QueryResult.php
@@ -192,6 +192,7 @@ protected function fillRows($rows)
192
}
193
switch ($column['type'])
194
{
195
+ case 'YSON':
196
case 'STRING':
197
$_row[$column['name']] = base64_decode($value);
198
break;
src/Types/YsonType.php
@@ -7,7 +7,7 @@ class YsonType extends AbstractType
7
/**
8
* @inherit
9
*/
10
- protected $ydb_key_name = 'text_value';
+ protected $ydb_key_name = 'bytes_value';
11
12
13
0 commit comments