blob: 2c903ee41a52f990d51d72f02b95f3aa7215caca (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* syntax version 1 */
/* postgres can not */
$ts_bytes = String::HexDecode('0a0b0c0d');
$ts_int = FromBytes($ts_bytes, Uint32);
SELECT
$ts_int,
DateTime::FromSeconds($ts_int)
|