diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2007-04-23 17:15:51 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2007-04-23 17:15:51 +0300 |
commit | b570cee1152b61422b0e0bd3035194cdbb21ce5d (patch) | |
tree | e1e2c8962687ebeb74a223bd271b6c25ad1c8f36 /mysql-test/r/windows.result | |
parent | 5b0ec8709ad4946260e257916a31d213b6168d26 (diff) | |
download | mariadb-git-b570cee1152b61422b0e0bd3035194cdbb21ce5d.tar.gz |
Bug #27811:
FORCE_INIT_OF_VARS was not defined for the
debug builds on Windows. This caused LINT_INIT
macro to be defined as NOP and this triggers
false alarms about use of uninitialized with
the runtime libs of some Visual Studio versions.
Fixed by defining FORCE_INIT_OF_VARS to match the
state of the Windows
CMakeLists.txt:
Bug #27811: added the missing build option
mysql-test/r/windows.result:
Bug #27811: test case
mysql-test/t/windows.test:
Bug #27811: test case
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r-- | mysql-test/r/windows.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result index 1702fd28c18..b5f9a48d805 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -12,3 +12,10 @@ Warnings: Warning 0 DATA DIRECTORY option ignored Warning 0 INDEX DIRECTORY option ignored drop table t1; +CREATE TABLE t1 (a int, b int); +INSERT INTO t1 VALUES (1,1); +EXPLAIN SELECT * FROM t1 WHERE b = (SELECT max(2)); +id select_type table type possible_keys key key_len ref rows Extra +1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables +2 SUBQUERY NULL NULL NULL NULL NULL NULL NULL No tables used +End of 5.0 tests. |