MCPcopy Create free account
hub / github.com/apache/impala / QueryLogTableName

Function QueryLogTableName

be/src/workload_mgmt/workload-management.cc:242–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240} // function StartupChecks
241
242string QueryLogTableName(bool with_db) {
243 string log_table_name = FLAGS_query_log_table_name;
244
245 if (with_db) {
246 log_table_name = StrCat(WM_DB, ".", log_table_name);
247 }
248
249 return boost::algorithm::to_lower_copy(log_table_name);
250} // function QueryLogTableName
251
252string QueryLiveTableName(bool with_db) {
253 string live_table_name = to_string(TSystemTableName::IMPALA_QUERY_LIVE);

Callers 3

TESTFunction · 0.85

Calls 1

StrCatFunction · 0.50

Tested by 1

TESTFunction · 0.68