mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed compiler warnings
client/readline.cc: Initialize not used variable (to kill wrong compiler warning) mysql-test/suite/handler/aria.result: Updated test result mysql-test/suite/handler/handler.inc: Changed index to ensure rows are in a fixed order mysql-test/suite/handler/heap.result: Updated test result mysql-test/suite/handler/innodb.result: Updated test result mysql-test/suite/handler/myisam.result: Updated test result plugin/handler_socket/handlersocket/Makefile.am: Use CXX flags to compile sql/filesort.cc: Initialize variable that may be used sql/log.cc: Initialize not used variable (to kill wrong compiler warning) sql/opt_range_mrr.cc: Fixed cast to avoid compiler warning storage/xtradb/fil/fil0fil.c: Added cast to avoid compiler warning
This commit is contained in:
@ -329,7 +329,7 @@ a b
|
||||
16 ccc
|
||||
16 xxx
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'handler t1 read a>=(?) where a < ? limit 5';
|
||||
prepare stmt from 'handler t1 read b>=(?) where a < ? limit 5';
|
||||
set @a=17, @b=24;
|
||||
execute stmt using @a,@b;
|
||||
a b
|
||||
|
@ -195,7 +195,7 @@ execute stmt using @a;
|
||||
execute stmt using @a;
|
||||
deallocate prepare stmt;
|
||||
|
||||
prepare stmt from 'handler t1 read a>=(?) where a < ? limit 5';
|
||||
prepare stmt from 'handler t1 read b>=(?) where a < ? limit 5';
|
||||
set @a=17, @b=24;
|
||||
execute stmt using @a,@b;
|
||||
execute stmt using @a,@b;
|
||||
|
@ -329,7 +329,7 @@ a b
|
||||
16 ccc
|
||||
16 xxx
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'handler t1 read a>=(?) where a < ? limit 5';
|
||||
prepare stmt from 'handler t1 read b>=(?) where a < ? limit 5';
|
||||
set @a=17, @b=24;
|
||||
execute stmt using @a,@b;
|
||||
a b
|
||||
|
@ -329,7 +329,7 @@ a b
|
||||
16 ccc
|
||||
16 xxx
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'handler t1 read a>=(?) where a < ? limit 5';
|
||||
prepare stmt from 'handler t1 read b>=(?) where a < ? limit 5';
|
||||
set @a=17, @b=24;
|
||||
execute stmt using @a,@b;
|
||||
a b
|
||||
|
@ -329,7 +329,7 @@ a b
|
||||
16 ccc
|
||||
16 xxx
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'handler t1 read a>=(?) where a < ? limit 5';
|
||||
prepare stmt from 'handler t1 read b>=(?) where a < ? limit 5';
|
||||
set @a=17, @b=24;
|
||||
execute stmt using @a,@b;
|
||||
a b
|
||||
|
Reference in New Issue
Block a user