diff options
author | monty@narttu.mysql.fi <> | 2003-03-19 00:45:44 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-03-19 00:45:44 +0200 |
commit | 386411b5baeb011edec24246d655f28c57905fd5 (patch) | |
tree | cb3c86ac4e063681514b1a8ffa9db31b639b9c46 /sql/sql_test.cc | |
parent | c2fa342d537b52f042ea3789f220df6cee6a6a74 (diff) | |
download | mariadb-git-386411b5baeb011edec24246d655f28c57905fd5.tar.gz |
Allow optimzation of multi-table-update also for InnoDB tables
MEMORY is alias for HEAP for CREATE TABLE ... TYPE=HEAP
Fixed bug in multi-table-update where a row could be updated several times
Diffstat (limited to 'sql/sql_test.cc')
-rw-r--r-- | sql/sql_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_test.cc b/sql/sql_test.cc index b226bc1300a..6816bb62047 100644 --- a/sql/sql_test.cc +++ b/sql/sql_test.cc @@ -131,7 +131,7 @@ void TEST_filesort(SORT_FIELD *sortorder,uint s_length, ha_rows special) DBUG_LOCK_FILE; VOID(fputs("\nInfo about FILESORT\n",DBUG_FILE)); if (special) - fprintf(DBUG_FILE,"Records to sort: %ld\n",special); + fprintf(DBUG_FILE,"Records to sort: %lu\n",(ulong) special); fprintf(DBUG_FILE,"Sortorder: %s\n",out.ptr()); DBUG_UNLOCK_FILE; DBUG_VOID_RETURN; |