mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix conversion warnings/errors.
This commit is contained in:
@ -3319,7 +3319,7 @@ public:
|
|||||||
{
|
{
|
||||||
store_length(ptr, packlength, number);
|
store_length(ptr, packlength, number);
|
||||||
}
|
}
|
||||||
inline uint32 get_length(uint row_offset= 0) const
|
inline uint32 get_length(my_ptrdiff_t row_offset= 0) const
|
||||||
{ return get_length(ptr+row_offset, this->packlength); }
|
{ return get_length(ptr+row_offset, this->packlength); }
|
||||||
uint32 get_length(const uchar *ptr, uint packlength) const;
|
uint32 get_length(const uchar *ptr, uint packlength) const;
|
||||||
uint32 get_length(const uchar *ptr_arg) const
|
uint32 get_length(const uchar *ptr_arg) const
|
||||||
|
@ -208,7 +208,7 @@ void mdev10259()
|
|||||||
res= my_b_flush_io_cache(&info, 1);
|
res= my_b_flush_io_cache(&info, 1);
|
||||||
ok(res == 0, "flush" INFO_TAIL);
|
ok(res == 0, "flush" INFO_TAIL);
|
||||||
|
|
||||||
ulong saved_pos= my_b_tell(&info);
|
my_off_t saved_pos= my_b_tell(&info);
|
||||||
res= reinit_io_cache(&info, READ_CACHE, 0, 0, 0);
|
res= reinit_io_cache(&info, READ_CACHE, 0, 0, 0);
|
||||||
ok(res == 0, "reinit READ_CACHE" INFO_TAIL);
|
ok(res == 0, "reinit READ_CACHE" INFO_TAIL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user