1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BUG#59549, fix compiler error on Windows, step 2

This commit is contained in:
Mikael Ronstrom
2011-01-20 18:24:48 +01:00
parent 14a46479b6
commit e31d728209
7 changed files with 32 additions and 32 deletions

View File

@ -46,7 +46,7 @@ protected:
select_result *result;
public:
Server_side_cursor(MEM_ROOT *mem_root_arg, select_result *result_arg)
:Query_arena(mem_root_arg, INITIALIZED), result(result_arg)
:Query_arena(mem_root_arg, ES_INITIALIZED), result(result_arg)
{}
virtual bool is_open() const= 0;