diff options
author | unknown <bell@sanja.is.com.ua> | 2005-04-01 02:14:30 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-04-01 02:14:30 +0300 |
commit | c831a156ceb2d392ba84ac9bfbee18318b11f333 (patch) | |
tree | bfd8839a822ffd9c3bcccaa970cc506139ae4a9c /sql/item_cmpfunc.cc | |
parent | 8a898a0b72ad14b87608c84f6b775eb586a070a2 (diff) | |
download | mariadb-git-c831a156ceb2d392ba84ac9bfbee18318b11f333.tar.gz |
postmerge 4.1->5.0 fixes
mysql-test/r/group_by.result:
result change
mysql-test/r/union.result:
result change
mysql-test/r/view.result:
result change
mysql-test/t/subselect.test:
fixed mistake of merge
sql/field.cc:
new 5.0 types support
temporary table/db names detection in field fixed
sql/field.h:
removed non-existent methods
added wrongly deleted during manual merge string
sql/item.cc:
support of new types added to merge of union types routines
sql/item.h:
fixed method definition
sql/item_cmpfunc.cc:
fixed type
sql/item_func.h:
item type name fixed
sql/item_subselect.cc:
added forgoten methods
sql/item_subselect.h:
fixed type
sql/sql_derived.cc:
fixed typo of manual merge
sql/sql_view.cc:
added new parameter
Diffstat (limited to 'sql/item_cmpfunc.cc')
-rw-r--r-- | sql/item_cmpfunc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc index 9850b01561e..ddb116f548a 100644 --- a/sql/item_cmpfunc.cc +++ b/sql/item_cmpfunc.cc @@ -708,7 +708,7 @@ longlong Item_in_optimizer::val_int() null_value= 1; return 0; } - longlong tmp= args[1]->val_int_result(); + bool tmp= args[1]->val_bool_result(); null_value= args[1]->null_value; return tmp; } |