From dc5bb881cf3fff59063627a1a45ac48f5a479882 Mon Sep 17 00:00:00 2001 From: mariadb-KristinaPavlova Date: Wed, 25 Jun 2025 16:32:13 +0300 Subject: [PATCH] fix DiskJoinStep 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 be55ec706..d07a380cf 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 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); } @@ -845,7 +845,7 @@ uint64_t JoinPartition::writeByteStream(int which, ByteStream& bs) { fs.close(); 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); }