Merge pull request #19597 from ping-yee/19133-MariaDB-Y2K38-Doc

docs: change the doc of timestamp of MariaDB.
This commit is contained in:
Maurício Meneghini Fauth 2025-04-25 15:19:51 -03:00 committed by GitHub
commit 9db0f07ecc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -303,9 +303,10 @@ class Types
case 'TIMESTAMP':
return __(
'A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 ' .
'03:14:07 UTC, stored as the number of seconds since the epoch ' .
'(1970-01-01 00:00:00 UTC)'
'A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-19 ' .
'03:14:07 UTC on 32-bit platforms (MariaDB 11.3 and earlier), ' .
'and up to 2106-02-07 06:28:15 UTC on 64-bit platforms (MariaDB 11.5 and later), ' .
'stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)'
);
case 'TIME':