You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
One more bool* to bool cast bug (#2097)
This commit is contained in:
@ -860,12 +860,7 @@ inline void mcsv1Context::setInterrupted(bool* interrupted)
|
||||
|
||||
inline bool mcsv1Context::getInterrupted() const
|
||||
{
|
||||
if (bInterrupted)
|
||||
{
|
||||
return bInterrupted;
|
||||
}
|
||||
|
||||
return false;
|
||||
return bInterrupted && *bInterrupted;
|
||||
}
|
||||
|
||||
inline void mcsv1Context::setUserDataSize(int bytes)
|
||||
|
Reference in New Issue
Block a user