summaryrefslogtreecommitdiff
path: root/sql/item_strfunc.h
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2002-05-12 23:46:42 +0300
committerunknown <bell@sanja.is.com.ua>2002-05-12 23:46:42 +0300
commit044cbe42ac583969f8339f6974f90e4430371536 (patch)
tree2ee96debc611fd8bdc4026fe156195e2ae1b715d /sql/item_strfunc.h
parentb69d8dab20811845e41c9f5c770125fd2f3b1a2f (diff)
downloadmariadb-git-044cbe42ac583969f8339f6974f90e4430371536.tar.gz
simple subselects ported to new select_lex structures
include/mysqld_error.h: simple subselects libmysqld/Makefile.am: simple subselects sql/Makefile.am: simple subselects sql/item.h: simple subselects sql/item_strfunc.h: simple subselects sql/share/czech/errmsg.txt: simple subselects sql/share/danish/errmsg.txt: simple subselects sql/share/dutch/errmsg.txt: simple subselects sql/share/english/errmsg.txt: simple subselects sql/share/estonian/errmsg.txt: simple subselects sql/share/french/errmsg.txt: simple subselects sql/share/german/errmsg.txt: simple subselects sql/share/greek/errmsg.txt: simple subselects sql/share/hungarian/errmsg.txt: simple subselects sql/share/italian/errmsg.txt: simple subselects sql/share/japanese/errmsg.txt: simple subselects sql/share/korean/errmsg.txt: simple subselects sql/share/norwegian-ny/errmsg.txt: simple subselects sql/share/norwegian/errmsg.txt: simple subselects sql/share/polish/errmsg.txt: simple subselects sql/share/portuguese/errmsg.txt: simple subselects sql/share/romanian/errmsg.txt: simple subselects sql/share/russian/errmsg.txt: simple subselects sql/share/slovak/errmsg.txt: simple subselects sql/share/spanish/errmsg.txt: simple subselects sql/share/swedish/errmsg.txt: simple subselects sql/share/ukrainian/errmsg.txt: simple subselects sql/sql_class.cc: simple subselects sql/sql_class.h: simple subselects sql/sql_lex.cc: simple subselects sql/sql_select.cc: simple subselects sql/sql_select.h: simple subselects sql/sql_union.cc: simple subselects sql/sql_yacc.yy: simple subselects
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r--sql/item_strfunc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h
index 091289fd040..350c4b3d793 100644
--- a/sql/item_strfunc.h
+++ b/sql/item_strfunc.h
@@ -38,7 +38,9 @@ public:
Field *tmp_table_field(TABLE *t_arg)
{
if (!t_arg) return result_field;
- return (max_length > 255) ? (Field *)new Field_blob(max_length,maybe_null, name,t_arg, binary) : (Field *) new Field_string(max_length,maybe_null, name,t_arg, binary);
+ return (max_length > 255) ?
+ (Field *) new Field_blob(max_length,maybe_null, name,t_arg, binary) :
+ (Field *) new Field_string(max_length,maybe_null, name,t_arg, binary);
}
};