mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
be46289855
Test of unsigned BIGINT values Fixes for queries-per-hour Cleanup of replication code (comments and portability fixes) Make most of the binary log code 4G clean Changed syntax for GRANT ... QUERIES PER HOUR
9 lines
359 B
Text
9 lines
359 B
Text
select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2;
|
|
1+1 1-1 1+1*2 8/5 8%5 mod(8,5) mod(8,5)|0 -(1+1)*-2
|
|
2 0 3 1.60 3 3 3 4
|
|
select 1 | (1+1),5 & 3,bit_count(7) ;
|
|
1 | (1+1) 5 & 3 bit_count(7)
|
|
3 1 3
|
|
select 1 << 32,1 << 63, 1 << 64, 4 >> 2, 4 >> 63, 1<< 63 >> 60;
|
|
1 << 32 1 << 63 1 << 64 4 >> 2 4 >> 63 1<< 63 >> 60
|
|
4294967296 9223372036854775808 0 1 0 8
|