diff options
author | unknown <bell@sanja.is.com.ua> | 2003-11-23 21:26:43 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-11-23 21:26:43 +0200 |
commit | 381a8db6a63aa70ddb49c3145bcff36d628da176 (patch) | |
tree | fc26a723bc704982f8240c2041552c93c9488f90 /sql/sql_derived.cc | |
parent | 105087127ed6f05c03b34f79402341cebfb8b71a (diff) | |
download | mariadb-git-381a8db6a63aa70ddb49c3145bcff36d628da176.tar.gz |
after review fixes
mysql-test/r/union.result:
new tests, more correct results for old one
mysql-test/t/union.test:
new tests, more correct results for old one
sql/field.cc:
new way to make field types csting
sql/field.h:
new way to make field types csting
sql/item.cc:
new way to make field types csting
sql/sql_derived.cc:
fixed typo
sql/sql_lex.h:
comment added
Diffstat (limited to 'sql/sql_derived.cc')
-rw-r--r-- | sql/sql_derived.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_derived.cc b/sql/sql_derived.cc index 591c6579a46..20a1f7f0124 100644 --- a/sql/sql_derived.cc +++ b/sql/sql_derived.cc @@ -114,7 +114,7 @@ int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit, if(!(derived_result= new select_union(0))) DBUG_RETURN(1); // out of memory - // st_select_lex_unit::prepare coppectly work for single select + // st_select_lex_unit::prepare correctly work for single select if ((res= unit->prepare(thd, derived_result))) goto exit; |