forked from mirzaev/baza
untab
This commit is contained in:
parent
a583763d3c
commit
4c6ceb5b4e
|
@ -357,14 +357,14 @@ class database
|
|||
// Writing into the buffer of read values
|
||||
$unpacked[] = $encoded;
|
||||
}
|
||||
/**
|
||||
* PHP builtin pack() ignores 64-bit integer values
|
||||
* found on 64-bit PHP distributions
|
||||
* @see https://www.php.net/manual/en/function.pack.php#109382
|
||||
*
|
||||
* In case of integer type on 64-bit PHP distributions
|
||||
* we got to reconstruct previosly spliced integer value
|
||||
*/
|
||||
/**
|
||||
* PHP builtin pack() ignores 64-bit integer values
|
||||
* found on 64-bit PHP distributions
|
||||
* @see https://www.php.net/manual/en/function.pack.php#109382
|
||||
*
|
||||
* In case of integer type on 64-bit PHP distributions
|
||||
* we got to reconstruct previosly spliced integer value
|
||||
*/
|
||||
else if (self::$architecture === architecture::x86_64 &&
|
||||
($column->type === type::integer ||
|
||||
$column->type === type::integer_unsigned))
|
||||
|
|
Loading…
Reference in New Issue