diff options
author | jimw@mysql.com <> | 2005-08-31 10:08:55 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-08-31 10:08:55 -0700 |
commit | 37bf8394ab32a2a77a0bbc73c0cc3a54129fe27f (patch) | |
tree | c1f9152e88243517c07aabc96a903ee85dc2a24c /sql/examples | |
parent | 6b4baf48a503e86e065c8ced36a0e50103be919b (diff) | |
download | mariadb-git-37bf8394ab32a2a77a0bbc73c0cc3a54129fe27f.tar.gz |
Add test for madvise() being declared in C++ code, because it is not
on Solaris even though it is available, and declare it ourselves in
that case. (Bug #7156)
Diffstat (limited to 'sql/examples')
-rw-r--r-- | sql/examples/ha_tina.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/examples/ha_tina.cc b/sql/examples/ha_tina.cc index 07e69bfac80..bbcdfb0dafb 100644 --- a/sql/examples/ha_tina.cc +++ b/sql/examples/ha_tina.cc @@ -608,7 +608,9 @@ int ha_tina::rnd_init(bool scan) current_position= next_position= 0; records= 0; chain_ptr= chain; +#ifdef HAVE_MADVISE (void)madvise(share->mapped_file,share->file_stat.st_size,MADV_SEQUENTIAL); +#endif DBUG_RETURN(0); } |