Returns the fully qualified table name in format "db.tbl_name".
| 79 | |
| 80 | /// Returns the fully qualified table name in format "db.tbl_name". |
| 81 | static const string _fullTableName(const string& db, const string& tbl_name) { |
| 82 | return StrCat(db, ".", tbl_name); |
| 83 | } // function _fullTableName |
| 84 | |
| 85 | /// Builds a catalog service request header that can be used in any catalog operation. |
| 86 | static TCatalogServiceRequestHeader _getHeader(const string& ip_addr) { |
no test coverage detected