1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

MSan added with fixes for libc++

This commit is contained in:
Leonid Fedorov
2025-07-12 00:57:46 +00:00
parent d4d87ad07f
commit 680adce45d
122 changed files with 587 additions and 471 deletions

View File

@@ -29,7 +29,7 @@
#include <fcntl.h>
// end
#include <boost/lexical_cast.hpp>
#include <tr1/unordered_set>
#include <unordered.h>
#include "we_brm.h"
#include "we_colop.h"
@@ -125,8 +125,8 @@ class WriteEngineWrapper : public WEObj
* purpose and not for generic use
*/
int buildIndex(const OID& /*colOid*/, const OID& /*treeOid*/, const OID& /*listOid*/,
execplan::CalpontSystemCatalog::ColDataType /*colDataType*/, int /*width*/, int /*hwm*/, bool /*resetFile*/,
uint64_t& /*totalRows*/, int /*maxRow*/ = IDX_DEFAULT_READ_ROW)
execplan::CalpontSystemCatalog::ColDataType /*colDataType*/, int /*width*/, int /*hwm*/,
bool /*resetFile*/, uint64_t& /*totalRows*/, int /*maxRow*/ = IDX_DEFAULT_READ_ROW)
{
return -1;
}
@@ -135,9 +135,9 @@ class WriteEngineWrapper : public WEObj
* @brief Build a index from a file
*/
int buildIndex(const std::string& /*sourceFileName*/, const OID& /*treeOid*/, const OID& /*listOid*/,
execplan::CalpontSystemCatalog::ColDataType /*colDataType*/, int /*width*/, int /*hwm*/, bool /*resetFile*/,
uint64_t& /*totalRows*/, const std::string& /*indexName*/, Log* /*pLogger*/,
int /*maxRow*/ = IDX_DEFAULT_READ_ROW)
execplan::CalpontSystemCatalog::ColDataType /*colDataType*/, int /*width*/, int /*hwm*/,
bool /*resetFile*/, uint64_t& /*totalRows*/, const std::string& /*indexName*/,
Log* /*pLogger*/, int /*maxRow*/ = IDX_DEFAULT_READ_ROW)
{
return -1;
}