diff options
author | malff/marcsql@weblab.(none) <> | 2007-08-20 11:13:31 -0600 |
---|---|---|
committer | malff/marcsql@weblab.(none) <> | 2007-08-20 11:13:31 -0600 |
commit | 1c27dd1d676cdfb3cc6c3b3a235bcce68dfb117f (patch) | |
tree | 5264f4fde1ef2dee84ed7addfcb088f73b9247ef /sql/field.h | |
parent | 76d173fa9df9384c40f4ef368977aeac6381c7b7 (diff) | |
parent | f87e6b866f8ca49c93bf115929080064e46f91ea (diff) | |
download | mariadb-git-1c27dd1d676cdfb3cc6c3b3a235bcce68dfb117f.tar.gz |
Merge weblab.(none):/home/marcsql/TREE/mysql-5.1-base
into weblab.(none):/home/marcsql/TREE/mysql-5.1-rt-merge
Diffstat (limited to 'sql/field.h')
-rw-r--r-- | sql/field.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h index f784ed82ecc..8aad6783291 100644 --- a/sql/field.h +++ b/sql/field.h @@ -1803,7 +1803,12 @@ class Send_field { */ class Copy_field :public Sql_alloc { - void (*get_copy_func(Field *to,Field *from))(Copy_field *); + /** + Convenience definition of a copy function returned by + get_copy_func. + */ + typedef void Copy_func(Copy_field*); + Copy_func *get_copy_func(Field *to, Field *from); public: uchar *from_ptr,*to_ptr; uchar *from_null_ptr,*to_null_ptr; |