From 5cb5ea1e0fbb94704639cb233f27ab9d1bbda58a Mon Sep 17 00:00:00 2001 From: mariadb-KristinaPavlova Date: Fri, 20 Jun 2025 14:15:23 +0300 Subject: [PATCH] add more description to Disk join error msg --- utils/joiner/joinpartition.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/joiner/joinpartition.cpp b/utils/joiner/joinpartition.cpp index dbf4521eb..be55ec706 100644 --- a/utils/joiner/joinpartition.cpp +++ b/utils/joiner/joinpartition.cpp @@ -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); }