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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test some error conditions
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. --error 1146
  8. insert into t1 values(1);
  9. --error 1146
  10. delete from t1;
  11. --error 1146
  12. update t1 set a=1;
  13. create table t1 (a int);
  14. --error 1054
  15. select count(test.t1.b) from t1;
  16. --error 1109
  17. select count(not_existing_database.t1) from t1;
  18. --error 1109
  19. select count(not_existing_database.t1.a) from t1;
  20. --error 1044,1146
  21. select count(not_existing_database.t1.a) from not_existing_database.t1;
  22. --error 1054
  23. select 1 from t1 order by 2;
  24. --error 1054
  25. select 1 from t1 group by 2;
  26. --error 1054
  27. select 1 from t1 order by t1.b;
  28. --error 1054
  29. select count(*),b from t1;
  30. drop table t1;
  31. # End of 4.1 tests