You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
Fix ignored qualifiers warnings (-Wignored-qualifiers)
This commit is contained in:
@@ -53,7 +53,7 @@ void ColumnBufferSection::write(const void* const data, int nRows)
|
||||
{
|
||||
//Casting void * to unsigned char * without modifying the constness
|
||||
const unsigned char* const tData =
|
||||
static_cast<const unsigned char* const>(data);
|
||||
static_cast<const unsigned char* >(data);
|
||||
|
||||
if (fCurrRowId + nRows + 1 > fEndRowId)
|
||||
{
|
||||
|
Reference in New Issue
Block a user