diff options
author | unknown <dlenev@mysql.com> | 2005-05-27 14:38:34 +0400 |
---|---|---|
committer | unknown <dlenev@mysql.com> | 2005-05-27 14:38:34 +0400 |
commit | a985031a296b587b3c4227c43392afb072843c83 (patch) | |
tree | 9a48b100f23a5306ede89b784f66c2b23eca72a4 /sql/sp_head.h | |
parent | 73b4415ce4db3973998f36e4ac92ba4e83c323f1 (diff) | |
parent | d51a5baecb83341e65931b2430f86d9982367a04 (diff) | |
download | mariadb-git-a985031a296b587b3c4227c43392afb072843c83.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/dlenev/src/mysql-5.0-ttdf
sql/sp_head.cc:
Auto merged
sql/sp_head.h:
Auto merged
sql/sql_yacc.yy:
Auto merged
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index 955007d1ea4..49eabce246b 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -467,9 +467,9 @@ class sp_instr_set_trigger_field : public sp_instr public: sp_instr_set_trigger_field(uint ip, sp_pcontext *ctx, - LEX_STRING field_name, Item *val) + Item_trigger_field *trg_fld, Item *val) : sp_instr(ip, ctx), - trigger_field(Item_trigger_field::NEW_ROW, field_name.str), + trigger_field(trg_fld), value(val) {} @@ -480,9 +480,8 @@ public: virtual void print(String *str); - Item_trigger_field trigger_field; - private: + Item_trigger_field *trigger_field; Item *value; }; // class sp_instr_trigger_field : public sp_instr |