diff options
author | Monty <monty@mariadb.org> | 2016-06-23 21:57:53 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-06-23 21:57:53 +0300 |
commit | a0d9f20c0c77702d7a8a3dbc5c295e9b1eefcafa (patch) | |
tree | 15fd0e625c4d4630e974f0bdc367db5bb6bc740a /unittest/sql | |
parent | ec38c7e60bf8dbe54b1551e75254337bec1993a4 (diff) | |
download | mariadb-git-bb-10.2-decimal.tar.gz |
Fixed compiler warnings and test failures found by buildbotbb-10.2-decimal
Fixed ccfilter to detect errors where the column is included in the error message
Diffstat (limited to 'unittest/sql')
-rw-r--r-- | unittest/sql/mf_iocache-t.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/sql/mf_iocache-t.cc b/unittest/sql/mf_iocache-t.cc index e0c8c98f4e9..8bbe4db53cf 100644 --- a/unittest/sql/mf_iocache-t.cc +++ b/unittest/sql/mf_iocache-t.cc @@ -93,7 +93,7 @@ IO_CACHE info; #define CACHE_SIZE 16384 #define INFO_TAIL ", pos_in_file = %llu, pos_in_mem = %lu", \ - info.pos_in_file, (*info.current_pos - info.request_pos) + info.pos_in_file, (ulong) (*info.current_pos - info.request_pos) #define FILL 0x5A |