You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
add more description to Disk join error msg
This commit is contained in:
committed by
Leonid Fedorov
parent
52351f2f29
commit
5cb5ea1e0f
@ -821,7 +821,7 @@ uint64_t JoinPartition::writeByteStream(int which, ByteStream& bs)
|
||||
{
|
||||
fs.close();
|
||||
ostringstream os;
|
||||
os << "Disk join could not write file " << filename << ": " << strerror(saveErrno) << endl;
|
||||
os << "Disk join could not write to configured path check 'HashJoin' in columnstore.xml " << filename << ": " << strerror(saveErrno) << endl;
|
||||
throw IDBExcept(os.str().c_str(), ERR_DBJ_FILE_IO_ERROR);
|
||||
}
|
||||
|
||||
@ -845,7 +845,7 @@ uint64_t JoinPartition::writeByteStream(int which, ByteStream& bs)
|
||||
{
|
||||
fs.close();
|
||||
ostringstream os;
|
||||
os << "Disk join could not write file " << filename << ": " << strerror(saveErrno) << endl;
|
||||
os << "Disk join could not write to configured path check 'HashJoin' in columnstore.xml " << filename << ": " << strerror(saveErrno) << endl;
|
||||
throw IDBExcept(os.str().c_str(), ERR_DBJ_FILE_IO_ERROR);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user