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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Testing of misc functions
  3. #
  4. select format(1.5555,0),format(123.5555,1),format(1234.5555,2),format(12345.55555,3),format(123456.5555,4),format(1234567.5555,5),format("12345.2399",2);
  5. select inet_ntoa(inet_aton("255.255.255.255.255.255.255.255"));
  6. select inet_aton("255.255.255.255.255"),inet_aton("255.255.1.255"),inet_aton("0.1.255");
  7. select inet_ntoa(1099511627775),inet_ntoa(4294902271),inet_ntoa(511);
  8. select hex(inet_aton('127'));
  9. select hex(inet_aton('127.1'));
  10. select hex(inet_aton('127.1.1'));
  11. select length(uuid()), charset(uuid()), length(unhex(replace(uuid(),_utf8'-',_utf8'')));
  12. #
  13. # Test for core dump with nan
  14. #
  15. select length(format('nan', 2)) > 0;
  16. #
  17. # Test for bug #628
  18. #
  19. select concat("$",format(2500,2));
  20. # Test for BUG#7716
  21. create table t1 ( a timestamp );
  22. insert into t1 values ( '2004-01-06 12:34' );
  23. select a from t1 where left(a+0,6) in ( left(20040106,6) );
  24. select a from t1 where left(a+0,6) = ( left(20040106,6) );
  25. select a from t1 where right(a+0,6) in ( right(20040106123400,6) );
  26. select a from t1 where right(a+0,6) = ( right(20040106123400,6) );
  27. select a from t1 where mid(a+0,6,3) in ( mid(20040106123400,6,3) );
  28. select a from t1 where mid(a+0,6,3) = ( mid(20040106123400,6,3) );
  29. drop table t1;
  30. # End of 4.1 tests