mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
test case for CRC32() SQL function
This commit is contained in:
committed by
Sergey Vojtovich
parent
9c2215e022
commit
e7e313f46f
@ -805,3 +805,9 @@ STDDEV_POP(ROUND(0,@A:=2009))
|
||||
select 0=0, 0=-0, 0.0= -0.0, 0.0 = -(0.0), 0.0E1=-0.0E1, 0.0E1=-(0.0E1);
|
||||
0=0 0=-0 0.0= -0.0 0.0 = -(0.0) 0.0E1=-0.0E1 0.0E1=-(0.0E1)
|
||||
1 1 1 1 1 1
|
||||
#
|
||||
# CRC32 tests
|
||||
#
|
||||
select CRC32(NULL), CRC32(''), CRC32('MySQL'), CRC32('mysql'), CRC32('01234567'), CRC32('012345678');
|
||||
CRC32(NULL) CRC32('') CRC32('MySQL') CRC32('mysql') CRC32('01234567') CRC32('012345678')
|
||||
NULL 0 3259397556 2501908538 763378421 939184570
|
||||
|
Reference in New Issue
Block a user