Hakan Kuecuekyilmaz wrote:
> Hi team,
>
> I just finished our weekly down merge:
> mysql-6.0 --> mysql-6.0-falcon --> mysql-6.0-falcon-team
>
> and
> mysql-6.0-falcon-team --> mysql-6.0-falcon
>
> As always, please test your tree for unusual problems like compile
> errors or the like.
>
On a less cheerful note, I just sent this to Rafal Somla
Hi Rafal,
I'm getting a compile error on Windows (Visual Studio) on
backup_info.cpp around like 186. I'm using the most recent
download from main in the Falcon Team tree.
The code looks like this:
#ifndef DBUG_OFF
backup_factory *saved_factory; // to save hton->get_backup_engine
DBUG_EXECUTE_IF("backup_test_dummy_be_factory",
{
handlerton *hton= se_hton(se);
saved_factory= hton->get_backup_engine;
if (hton == myisam_hton
#ifdef WITH_MARIA_STORAGE_ENGINE
|| hton == maria_hton
#endif
)
hton->get_backup_engine= dummy_backup_engine_factory;
});
#endif
and the errors look like this:
backup_info.cc
backup_info.cc(186) : error C2121: '#' : invalid character : possibly
the result of a macro expansion
backup_info.cc(186) : error C2146: syntax error : missing ')' before
identifier 'ifdef'
backup_info.cc(186) : error C2065: 'ifdef' : undeclared identifier
backup_info.cc(186) : error C2143: syntax error : missing ';' before
'constant'
backup_info.cc(186) : error C2121: '#' : invalid character : possibly
the result of a macro expansion
backup_info.cc(186) : error C2146: syntax error : missing ';' before
identifier 'endif'
backup_info.cc(186) : error C2059: syntax error : ')'
backup_info.cc(186) : error C2065: 'endif' : undeclared identifier
backup_info.cc(186) : error C2146: syntax error : missing ';' before
identifier 'hton'