Skip to content

Commit 715a557

Browse files
committed
ClickHouse#24 add some error codes
1 parent f35601a commit 715a557

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

clickhouse/error_codes.h

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#pragma once
2+
3+
namespace clickhouse {
4+
5+
enum ErrorCodes {
6+
CHECKSUM_DOESNT_MATCH = 40,
7+
CANNOT_PARSE_DATETIME = 41,
8+
UNKNOWN_FUNCTION = 46,
9+
UNKNOWN_IDENTIFIER = 47,
10+
TABLE_ALREADY_EXISTS = 57,
11+
UNKNOWN_TABLE = 60,
12+
SYNTAX_ERROR = 62,
13+
UNKNOWN_DATABASE = 81,
14+
DATABASE_ALREADY_EXISTS = 82,
15+
UNKNOWN_PACKET_FROM_CLIENT = 99,
16+
UNEXPECTED_PACKET_FROM_CLIENT = 101,
17+
RECEIVED_DATA_FOR_WRONG_QUERY_ID = 103,
18+
ENGINE_REQUIRED = 119,
19+
READONLY = 164,
20+
UNKNOWN_USER = 192,
21+
WRONG_PASSWORD = 193,
22+
REQUIRED_PASSWORD = 194,
23+
IP_ADDRESS_NOT_ALLOWED = 195,
24+
LIMIT_EXCEEDED = 290,
25+
UNKNOWN_DATABASE_ENGINE = 336,
26+
UNKNOWN_EXCEPTION = 1002,
27+
};
28+
29+
}

clickhouse/exceptions.h

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ class ServerException : public std::runtime_error {
1414
{
1515
}
1616

17+
int GetCode() const {
18+
return exception_->code;
19+
}
20+
1721
const Exception& GetException() const {
1822
return *exception_;
1923
}

tests/simple/main.cpp

+20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <clickhouse/client.h>
2+
#include <clickhouse/error_codes.h>
23
#include <clickhouse/types/type_parser.h>
34

45
#include <iostream>
@@ -206,12 +207,31 @@ inline void NumbersExample(Client& client) {
206207
);
207208
}
208209

210+
inline void ExecptionExample(Client& client) {
211+
/// Create a table.
212+
client.Execute("CREATE TABLE IF NOT EXISTS test.exceptions (id UInt64, name String) ENGINE = Memory");
213+
/// Expect failing on table creation.
214+
try {
215+
client.Execute("CREATE TABLE test.exceptions (id UInt64, name String) ENGINE = Memory");
216+
} catch (const ServerException& e) {
217+
if (e.GetCode() == ErrorCodes::TABLE_ALREADY_EXISTS) {
218+
// OK
219+
} else {
220+
throw;
221+
}
222+
}
223+
224+
/// Delete table.
225+
client.Execute("DROP TABLE test.exceptions");
226+
}
227+
209228
static void RunTests(Client& client) {
210229
ArrayExample(client);
211230
DateExample(client);
212231
GenericExample(client);
213232
NullableExample(client);
214233
NumbersExample(client);
234+
ExecptionExample(client);
215235
}
216236

217237
int main() {

0 commit comments

Comments
 (0)