diff options
author | Igor Babaev <igor@askmonty.org> | 2010-07-17 12:58:08 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2010-07-17 12:58:08 -0700 |
commit | 4f564a5443c6a907449bc4d2c3e7f6f89dbf4485 (patch) | |
tree | 3d34791cab99e31a3c1414710841a9eef7b728c9 /sql/records.cc | |
parent | f58199f6f6b4795ab5d0db65ebdde8bd4897333e (diff) | |
parent | 452860dfdead7f47b0312598db95ea09201e9d4e (diff) | |
download | mariadb-git-4f564a5443c6a907449bc4d2c3e7f6f89dbf4485.tar.gz |
Merge
Diffstat (limited to 'sql/records.cc')
-rw-r--r-- | sql/records.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/records.cc b/sql/records.cc index 3342c7db685..10d145fb1e2 100644 --- a/sql/records.cc +++ b/sql/records.cc @@ -331,7 +331,7 @@ static int rr_quick(READ_RECORD *info) break; } } - update_virtual_fields(info->table); + update_virtual_fields(info->thd, info->table); return tmp; } @@ -400,7 +400,7 @@ int rr_sequential(READ_RECORD *info) } } if (!tmp) - update_virtual_fields(info->table); + update_virtual_fields(info->thd, info->table); return tmp; } |