1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-05 15:41:14 +03:00

Revert "Fixes MCOL-5700, Oracle mode test results"

This commit is contained in:
Leonid Fedorov
2024-03-27 18:52:30 +04:00
committed by GitHub
parent 56b35d5cf6
commit af5ae35413
9 changed files with 79 additions and 102 deletions

View File

@ -263,24 +263,6 @@ class ProtocolError : public std::logic_error
#ifndef __STRING
#define __STRING(x) #x
#endif
#define idblog(x) \
do \
{ \
{ \
std::ostringstream os; \
\
os << __FILE__ << "@" << __LINE__ << ": \'" << x << "\'"; \
std::cerr << os.str() << std::endl; \
logging::MessageLog logger((logging::LoggingID())); \
logging::Message message; \
logging::Message::Args args; \
\
args.add(os.str()); \
message.format(args); \
logger.logErrorMessage(message); \
} \
} while (0)
#define idbassert(x) \
do \
{ \