File tree 3 files changed +53
-0
lines changed
3 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ class ServerException : public std::runtime_error {
14
14
{
15
15
}
16
16
17
+ int GetCode () const {
18
+ return exception_->code ;
19
+ }
20
+
17
21
const Exception& GetException () const {
18
22
return *exception_;
19
23
}
Original file line number Diff line number Diff line change 1
1
#include < clickhouse/client.h>
2
+ #include < clickhouse/error_codes.h>
2
3
#include < clickhouse/types/type_parser.h>
3
4
4
5
#include < iostream>
@@ -206,12 +207,31 @@ inline void NumbersExample(Client& client) {
206
207
);
207
208
}
208
209
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
+
209
228
static void RunTests (Client& client) {
210
229
ArrayExample (client);
211
230
DateExample (client);
212
231
GenericExample (client);
213
232
NullableExample (client);
214
233
NumbersExample (client);
234
+ ExecptionExample (client);
215
235
}
216
236
217
237
int main () {
You can’t perform that action at this time.
0 commit comments