diff options
author | bell@sanja.is.com.ua <> | 2002-11-04 22:12:45 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-11-04 22:12:45 +0200 |
commit | 45f098bf60deda10643bcaef7324581b607f9ae1 (patch) | |
tree | 12c9202ba6e7b1dca9c4741f7b30fad9fa4a7d40 /sql/sql_derived.cc | |
parent | bb49de5ff532e1cb8acb9392288acebbdb8ab6b5 (diff) | |
download | mariadb-git-45f098bf60deda10643bcaef7324581b607f9ae1.tar.gz |
moved similar code to function
onversion with check
Diffstat (limited to 'sql/sql_derived.cc')
-rw-r--r-- | sql/sql_derived.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_derived.cc b/sql/sql_derived.cc index 9cc83a3835a..1335618b90d 100644 --- a/sql/sql_derived.cc +++ b/sql/sql_derived.cc @@ -57,8 +57,8 @@ int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit, TABLE_LIST *t, { if (cursor->derived) { - res=mysql_derived(thd, lex, (SELECT_LEX_UNIT *)cursor->derived, - cursor, 0); + res= mysql_derived(thd, lex, (SELECT_LEX_UNIT *)cursor->derived, + cursor, 0); if (res) DBUG_RETURN(res); } } |