1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Fixed compile errors of the merge of the patch for mdev-8789 with 10.2.

This commit is contained in:
Igor Babaev
2015-12-21 12:13:39 -08:00
parent dfc4772f83
commit 6dbdb433cb
5 changed files with 13 additions and 9 deletions

View File

@ -672,7 +672,7 @@ bool mysql_derived_prepare(THD *thd, LEX *lex, TABLE_LIST *derived)
if ((res= unit->prepare(thd, derived->derived_result, 0)))
goto exit;
if (derived->with &&
(res= derived->with->process_column_list()))
(res= derived->with->process_column_list(thd)))
goto exit;
lex->context_analysis_only&= ~CONTEXT_ANALYSIS_ONLY_DERIVED;
if ((res= check_duplicate_names(thd, unit->types, 0)))