| 3033 | } |
| 3034 | |
| 3035 | void HandleNsClientSQL(const std::string sql, |
| 3036 | ::fedb::client::NsClient* client) { |
| 3037 | std::string msg; |
| 3038 | if (!client->ExecuteSQL(sql, msg)) { |
| 3039 | std::cout << "execute sql failed, sql:" << sql << " , msg: " << msg << std::endl; |
| 3040 | } |
| 3041 | } |
| 3042 | |
| 3043 | void HandleNSClientGetTablePartition(const std::vector<std::string>& parts, |
| 3044 | ::fedb::client::NsClient* client) { |
no test coverage detected