Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deploy/docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ RUN cd /tmp \
RUN cd /usr/share/java \
&& curl -O https://www.antlr.org/download/antlr-4.13.2-complete.jar \
&& cd /tmp \
&& git clone https://github.com/antlr/antlr4 \
&& git clone https://github.com/iagaponenko/antlr4.git \
&& cd antlr4 \
&& git checkout 4.13.2 \
&& git checkout qserv \
&& git config user.email "qserv@qserv-build" \
&& mkdir runtime/Cpp/build \
&& cd runtime/Cpp/build \
Expand Down
4 changes: 2 additions & 2 deletions src/ccontrol/ParseAdapters.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class Adapter {
// passed in to CALLBACK_INFO
template <typename CALLBACK_INFO>
void trace_callback_info(std::string const& function, CALLBACK_INFO const& callbackInfo) {
LOGS(_log, LOG_LVL_TRACE, name() << function << " " << callbackInfo);
// LOGS(_log, LOG_LVL_TRACE, name() << function << " " << callbackInfo);
}

static LOG_LOGGER _log;
Expand Down Expand Up @@ -1706,7 +1706,7 @@ class SimpleIdAdapter : public AdapterT<SimpleIdCBH, QSMySqlParser::SimpleIdCont
} else if (_ctx->functionNameBase() != nullptr) {
return;
} else if (_ctx->keywordsCanBeId() != nullptr) {
LOGS(_log, LOG_LVL_WARN, __FUNCTION__ << " reusing keyword as ID: " << _ctx->getText());
// LOGS(_log, LOG_LVL_WARN, __FUNCTION__ << " reusing keyword as ID: " << _ctx->getText());
return;
}
assertNotSupported(__FUNCTION__, false, "Unsupported SimpleId", _ctx);
Expand Down
Loading