1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

fix DiskJoinStep error msg

This commit is contained in:
mariadb-KristinaPavlova
2025-06-25 16:32:13 +03:00
committed by Leonid Fedorov
parent 5cb5ea1e0f
commit dc5bb881cf

View File

@@ -821,7 +821,7 @@ uint64_t JoinPartition::writeByteStream(int which, ByteStream& bs)
{ {
fs.close(); fs.close();
ostringstream os; ostringstream os;
os << "Disk join could not write to configured path check 'HashJoin' in columnstore.xml " << filename << ": " << strerror(saveErrno) << endl; os << "Disk join could not write to configured path SystemConfig.SystemTempFileDir in Columnstore.xml " << filename << ": " << strerror(saveErrno) << endl;
throw IDBExcept(os.str().c_str(), ERR_DBJ_FILE_IO_ERROR); 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(); fs.close();
ostringstream os; ostringstream os;
os << "Disk join could not write to configured path check 'HashJoin' in columnstore.xml " << filename << ": " << strerror(saveErrno) << endl; os << "Disk join could not write to configured path SystemConfig.SystemTempFileDir in Columnstore.xml " << filename << ": " << strerror(saveErrno) << endl;
throw IDBExcept(os.str().c_str(), ERR_DBJ_FILE_IO_ERROR); throw IDBExcept(os.str().c_str(), ERR_DBJ_FILE_IO_ERROR);
} }