You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-13 16:01:32 +03:00
C++20 fixes
This commit is contained in:
@ -891,7 +891,7 @@ void WEDataLoader::onReceiveData(ByteStream& Ibs)
|
||||
if (aQsz < MAX_QSIZE)
|
||||
sendDataRequest();
|
||||
|
||||
if (aQsz > 1.5 * MAX_QSIZE) // > 2*250
|
||||
if (aQsz > 1.5 * static_cast<int>(MAX_QSIZE)) // > 2*250
|
||||
{
|
||||
cout << "WARNING : Data Queuing up : QSize = " << aQsz << endl;
|
||||
|
||||
|
Reference in New Issue
Block a user