func_op.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # Description
  2. # -----------
  3. # Simple operands and arithmetic grouping
  4. select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2;
  5. explain extended select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2;
  6. select 1 | (1+1),5 & 3,bit_count(7) ;
  7. explain extended select 1 | (1+1),5 & 3,bit_count(7) ;
  8. select 1 << 32,1 << 63, 1 << 64, 4 >> 2, 4 >> 63, 1<< 63 >> 60;
  9. #
  10. # bug #1993: bit functions must be unsigned
  11. #
  12. select -1 | 0, -1 ^ 0, -1 & 0;
  13. select -1 | 1, -1 ^ 1, -1 & 1;
  14. select  1 | -1,  1 ^ -1,  1 & -1;
  15. select  0 | -1,  0 ^ -1,  0 & -1;
  16. select -1 >> 0, -1 << 0;
  17. select -1 >> 1, -1 << 1;
  18. # End of 4.1 tests