#At file:///home/alik/MySQL/bzr/00/bug12362125/mysql-5.5-bug12362125/ based on revid:jon.hauglid@stripped
3458 Alexander Nozdrin 2011-04-22
Patch for Bug#12362125 (SP INOUT HANDLING IS BROKEN FOR TEXT TYPE).
The problem was that BLOBs were not copied to the result table
from triggers.
modified:
mysql-test/r/trigger.result
mysql-test/t/trigger.test
sql/item.cc
=== modified file 'mysql-test/r/trigger.result'
--- a/mysql-test/r/trigger.result 2011-03-10 08:07:57 +0000
+++ b/mysql-test/r/trigger.result 2011-04-22 18:30:36 +0000
@@ -2208,4 +2208,22 @@ trigger_name
# Clean-up.
drop temporary table t1;
drop table t1;
-End of 6.0 tests.
+
+#
+# Bug #12362125: SP INOUT HANDLING IS BROKEN FOR TEXT TYPE.
+#
+DROP TABLE IF EXISTS t1;
+CREATE TABLE t1(c TEXT);
+CREATE TRIGGER t1_bi BEFORE INSERT ON t1 FOR EACH ROW
+BEGIN
+DECLARE v TEXT;
+SET v = 'aaa';
+SET NEW.c = v;
+END|
+INSERT INTO t1 VALUES('qazwsxedc');
+SELECT c FROM t1;
+c
+aaa
+DROP TABLE t1;
+
+End of 5.5 tests.
=== modified file 'mysql-test/t/trigger.test'
--- a/mysql-test/t/trigger.test 2011-03-10 08:07:57 +0000
+++ b/mysql-test/t/trigger.test 2011-04-22 18:30:36 +0000
@@ -2583,4 +2583,32 @@ select trigger_name from information_sch
drop temporary table t1;
drop table t1;
---echo End of 6.0 tests.
+
+--echo
+--echo #
+--echo # Bug #12362125: SP INOUT HANDLING IS BROKEN FOR TEXT TYPE.
+--echo #
+
+--disable_warnings
+DROP TABLE IF EXISTS t1;
+--enable_warnings
+
+CREATE TABLE t1(c TEXT);
+
+delimiter |;
+CREATE TRIGGER t1_bi BEFORE INSERT ON t1 FOR EACH ROW
+BEGIN
+ DECLARE v TEXT;
+ SET v = 'aaa';
+ SET NEW.c = v;
+END|
+delimiter ;|
+
+INSERT INTO t1 VALUES('qazwsxedc');
+
+SELECT c FROM t1;
+
+DROP TABLE t1;
+
+--echo
+--echo End of 5.5 tests.
=== modified file 'sql/item.cc'
--- a/sql/item.cc 2011-04-08 13:15:23 +0000
+++ b/sql/item.cc 2011-04-22 18:30:36 +0000
@@ -7131,8 +7131,18 @@ bool Item_trigger_field::set_value(THD *
{
Item *item= sp_prepare_func_item(thd, it);
- return (!item || (!fixed && fix_fields(thd, 0)) ||
- (item->save_in_field(field, 0) < 0));
+ if (!item)
+ return true;
+
+ if (!fixed)
+ {
+ if (fix_fields(thd, NULL))
+ return true;
+ }
+
+ field->table->copy_blobs= true;
+
+ return item->save_in_field(field, 0) < 0;
}
Attachment: [text/bzr-bundle] bzr/alexander.nozdrin@oracle.com-20110422183036-xfhoku6v9tuocnwr.bundle
| Thread |
|---|
| • bzr commit into mysql-5.5 branch (alexander.nozdrin:3458) Bug#12362125 | Alexander Nozdrin | 22 Apr |