Coverage Report

Created: 2025-05-19 10:45

/root/doris/be/src/common/status.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
#pragma once
6
7
#include <fmt/format.h>
8
#include <gen_cpp/Status_types.h> // for TStatus
9
#include <gen_cpp/types.pb.h>
10
#include <glog/logging.h>
11
12
#include <cstdint>
13
#include <iostream>
14
#include <memory>
15
#include <string>
16
#include <string_view>
17
#include <utility>
18
19
#include "common/compiler_util.h" // IWYU pragma: keep
20
#include "common/config.h"
21
#include "common/expected.h"
22
#include "util/stack_util.h"
23
24
namespace doris {
25
26
namespace io {
27
struct ObjectStorageStatus;
28
}
29
30
class Status;
31
32
extern io::ObjectStorageStatus convert_to_obj_response(Status st);
33
34
class PStatus;
35
36
namespace ErrorCode {
37
38
// E thrift_error_name, print_stacktrace
39
#define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError)        \
40
5
    TStatusError(PUBLISH_TIMEOUT, false);                 \
41
5
    TStatusError(MEM_ALLOC_FAILED, true);                 \
42
5
    TStatusError(BUFFER_ALLOCATION_FAILED, true);         \
43
5
    TStatusError(INVALID_ARGUMENT, false);                \
44
5
    TStatusError(INVALID_JSON_PATH, false);               \
45
5
    TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true);  \
46
5
    TStatusError(CORRUPTION, true);                       \
47
5
    TStatusError(IO_ERROR, true);                         \
48
5
    TStatusError(NOT_FOUND, true);                        \
49
5
    TStatusError(ALREADY_EXIST, true);                    \
50
5
    TStatusError(NOT_IMPLEMENTED_ERROR, false);           \
51
5
    TStatusError(END_OF_FILE, false);                     \
52
5
    TStatusError(INTERNAL_ERROR, true);                   \
53
5
    TStatusError(RUNTIME_ERROR, true);                    \
54
5
    TStatusError(CANCELLED, false);                       \
55
5
    TStatusError(ANALYSIS_ERROR, false);                  \
56
5
    TStatusError(MEM_LIMIT_EXCEEDED, false);              \
57
5
    TStatusError(THRIFT_RPC_ERROR, true);                 \
58
5
    TStatusError(TIMEOUT, true);                          \
59
5
    TStatusError(LIMIT_REACH, false);                     \
60
5
    TStatusError(TOO_MANY_TASKS, true);                   \
61
5
    TStatusError(UNINITIALIZED, false);                   \
62
5
    TStatusError(INCOMPLETE, false);                      \
63
5
    TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \
64
5
    TStatusError(ABORTED, false);                         \
65
5
    TStatusError(DATA_QUALITY_ERROR, false);              \
66
5
    TStatusError(LABEL_ALREADY_EXISTS, true);             \
67
5
    TStatusError(NOT_AUTHORIZED, true);                   \
68
5
    TStatusError(BINLOG_DISABLE, false);                  \
69
5
    TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false);       \
70
5
    TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false);       \
71
5
    TStatusError(BINLOG_NOT_FOUND_DB, false);             \
72
5
    TStatusError(BINLOG_NOT_FOUND_TABLE, false);          \
73
5
    TStatusError(NETWORK_ERROR, false);                   \
74
5
    TStatusError(ILLEGAL_STATE, false);                   \
75
5
    TStatusError(SNAPSHOT_NOT_EXIST, true);               \
76
5
    TStatusError(HTTP_ERROR, true);                       \
77
5
    TStatusError(TABLET_MISSING, true);                   \
78
5
    TStatusError(NOT_MASTER, true);                       \
79
5
    TStatusError(OBTAIN_LOCK_FAILED, false);              \
80
5
    TStatusError(SNAPSHOT_EXPIRED, false);                \
81
5
    TStatusError(DELETE_BITMAP_LOCK_ERROR, false);
82
// E error_name, error_code, print_stacktrace
83
#define APPLY_FOR_OLAP_ERROR_CODES(E)                        \
84
5
    E(OK, 0, false);                                         \
85
5
    E(CALL_SEQUENCE_ERROR, -202, true);                      \
86
5
    E(BUFFER_OVERFLOW, -204, true);                          \
87
5
    E(CONFIG_ERROR, -205, true);                             \
88
5
    E(INIT_FAILED, -206, true);                              \
89
5
    E(INVALID_SCHEMA, -207, true);                           \
90
5
    E(CHECKSUM_ERROR, -208, true);                           \
91
5
    E(SIGNATURE_ERROR, -209, true);                          \
92
5
    E(CATCH_EXCEPTION, -210, true);                          \
93
5
    E(PARSE_PROTOBUF_ERROR, -211, true);                     \
94
5
    E(SERIALIZE_PROTOBUF_ERROR, -212, true);                 \
95
5
    E(WRITE_PROTOBUF_ERROR, -213, true);                     \
96
5
    E(VERSION_NOT_EXIST, -214, false);                       \
97
5
    E(TABLE_NOT_FOUND, -215, true);                          \
98
5
    E(TRY_LOCK_FAILED, -216, false);                         \
99
5
    E(EXCEEDED_LIMIT, -217, false);                          \
100
5
    E(OUT_OF_BOUND, -218, false);                            \
101
5
    E(INVALID_ROOT_PATH, -222, true);                        \
102
5
    E(NO_AVAILABLE_ROOT_PATH, -223, true);                   \
103
5
    E(CHECK_LINES_ERROR, -224, true);                        \
104
5
    E(INVALID_CLUSTER_INFO, -225, true);                     \
105
5
    E(TRANSACTION_NOT_EXIST, -226, false);                   \
106
5
    E(DISK_FAILURE, -227, true);                             \
107
5
    E(TRANSACTION_ALREADY_COMMITTED, -228, false);           \
108
5
    E(TRANSACTION_ALREADY_VISIBLE, -229, false);             \
109
5
    E(VERSION_ALREADY_MERGED, -230, true);                   \
110
5
    E(LZO_DISABLED, -231, true);                             \
111
5
    E(DISK_REACH_CAPACITY_LIMIT, -232, true);                \
112
5
    E(TOO_MANY_TRANSACTIONS, -233, false);                   \
113
5
    E(INVALID_SNAPSHOT_VERSION, -234, true);                 \
114
5
    E(TOO_MANY_VERSION, -235, false);                        \
115
5
    E(NOT_INITIALIZED, -236, true);                          \
116
5
    E(ALREADY_CANCELLED, -237, false);                       \
117
5
    E(TOO_MANY_SEGMENTS, -238, false);                       \
118
5
    E(ALREADY_CLOSED, -239, false);                          \
119
5
    E(SERVICE_UNAVAILABLE, -240, true);                      \
120
5
    E(NEED_SEND_AGAIN, -241, false);                         \
121
5
    E(OS_ERROR, -242, true);                                 \
122
5
    E(DIR_NOT_EXIST, -243, true);                            \
123
5
    E(CREATE_FILE_ERROR, -245, true);                        \
124
5
    E(STL_ERROR, -246, true);                                \
125
5
    E(MUTEX_ERROR, -247, true);                              \
126
5
    E(PTHREAD_ERROR, -248, true);                            \
127
5
    E(UB_FUNC_ERROR, -250, true);                            \
128
5
    E(COMPRESS_ERROR, -251, true);                           \
129
5
    E(DECOMPRESS_ERROR, -252, true);                         \
130
5
    E(FILE_ALREADY_EXIST, -253, true);                       \
131
5
    E(BAD_CAST, -254, true);                                 \
132
5
    E(ARITHMETIC_OVERFLOW_ERRROR, -255, false);              \
133
5
    E(PERMISSION_DENIED, -256, false);                       \
134
5
    E(QUERY_MEMORY_EXCEEDED, -257, false);                   \
135
5
    E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false);          \
136
5
    E(PROCESS_MEMORY_EXCEEDED, -259, false);                 \
137
5
    E(CE_CMD_PARAMS_ERROR, -300, true);                      \
138
5
    E(CE_BUFFER_TOO_SMALL, -301, true);                      \
139
5
    E(CE_CMD_NOT_VALID, -302, true);                         \
140
5
    E(CE_LOAD_TABLE_ERROR, -303, true);                      \
141
5
    E(CE_NOT_FINISHED, -304, true);                          \
142
5
    E(CE_TABLET_ID_EXIST, -305, true);                       \
143
5
    E(TABLE_VERSION_DUPLICATE_ERROR, -400, true);            \
144
5
    E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true);       \
145
5
    E(TABLE_INDEX_VALIDATE_ERROR, -402, true);               \
146
5
    E(TABLE_INDEX_FIND_ERROR, -403, true);                   \
147
5
    E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true);           \
148
5
    E(TABLE_CREATE_META_ERROR, -405, true);                  \
149
5
    E(TABLE_ALREADY_DELETED_ERROR, -406, false);             \
150
5
    E(ENGINE_INSERT_EXISTS_TABLE, -500, true);               \
151
5
    E(ENGINE_DROP_NOEXISTS_TABLE, -501, true);               \
152
5
    E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true);            \
153
5
    E(TABLE_INSERT_DUPLICATION_ERROR, -503, true);           \
154
5
    E(DELETE_VERSION_ERROR, -504, true);                     \
155
5
    E(GC_SCAN_PATH_ERROR, -505, true);                       \
156
5
    E(ENGINE_INSERT_OLD_TABLET, -506, true);                 \
157
5
    E(FETCH_OTHER_ERROR, -600, true);                        \
158
5
    E(FETCH_TABLE_NOT_EXIST, -601, true);                    \
159
5
    E(FETCH_VERSION_ERROR, -602, true);                      \
160
5
    E(FETCH_SCHEMA_ERROR, -603, true);                       \
161
5
    E(FETCH_COMPRESSION_ERROR, -604, true);                  \
162
5
    E(FETCH_CONTEXT_NOT_EXIST, -605, true);                  \
163
5
    E(FETCH_GET_READER_PARAMS_ERR, -606, true);              \
164
5
    E(FETCH_SAVE_SESSION_ERR, -607, true);                   \
165
5
    E(FETCH_MEMORY_EXCEEDED, -608, true);                    \
166
5
    E(READER_IS_UNINITIALIZED, -700, true);                  \
167
5
    E(READER_GET_ITERATOR_ERROR, -701, true);                \
168
5
    E(CAPTURE_ROWSET_READER_ERROR, -702, true);              \
169
5
    E(READER_READING_ERROR, -703, true);                     \
170
5
    E(READER_INITIALIZE_ERROR, -704, true);                  \
171
5
    E(BE_VERSION_NOT_MATCH, -800, true);                     \
172
5
    E(BE_REPLACE_VERSIONS_ERROR, -801, true);                \
173
5
    E(BE_MERGE_ERROR, -802, true);                           \
174
5
    E(CAPTURE_ROWSET_ERROR, -804, true);                     \
175
5
    E(BE_SAVE_HEADER_ERROR, -805, true);                     \
176
5
    E(BE_INIT_OLAP_DATA, -806, true);                        \
177
5
    E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true);              \
178
5
    E(BE_NO_SUITABLE_VERSION, -808, false);                  \
179
5
    E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true);          \
180
5
    E(BE_ERROR_DELETE_ACTION, -811, true);                   \
181
5
    E(BE_SEGMENTS_OVERLAPPING, -812, true);                  \
182
5
    E(PUSH_INIT_ERROR, -900, true);                          \
183
5
    E(PUSH_VERSION_INCORRECT, -902, true);                   \
184
5
    E(PUSH_SCHEMA_MISMATCH, -903, true);                     \
185
5
    E(PUSH_CHECKSUM_ERROR, -904, true);                      \
186
5
    E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true);            \
187
5
    E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true);              \
188
5
    E(PUSH_BUILD_DELTA_ERROR, -907, true);                   \
189
5
    E(PUSH_VERSION_ALREADY_EXIST, -908, false);              \
190
5
    E(PUSH_TABLE_NOT_EXIST, -909, true);                     \
191
5
    E(PUSH_INPUT_DATA_ERROR, -910, true);                    \
192
5
    E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false);          \
193
5
    E(PUSH_BATCH_PROCESS_REMOVED, -912, true);               \
194
5
    E(PUSH_COMMIT_ROWSET, -913, true);                       \
195
5
    E(PUSH_ROWSET_NOT_FOUND, -914, true);                    \
196
5
    E(INDEX_LOAD_ERROR, -1000, true);                        \
197
5
    E(INDEX_CHECKSUM_ERROR, -1002, true);                    \
198
5
    E(INDEX_DELTA_PRUNING, -1003, true);                     \
199
5
    E(DATA_ROW_BLOCK_ERROR, -1100, true);                    \
200
5
    E(DATA_FILE_TYPE_ERROR, -1101, true);                    \
201
5
    E(WRITER_INDEX_WRITE_ERROR, -1200, true);                \
202
5
    E(WRITER_DATA_WRITE_ERROR, -1201, true);                 \
203
5
    E(WRITER_ROW_BLOCK_ERROR, -1202, true);                  \
204
5
    E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true);            \
205
5
    E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true);               \
206
5
    E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true);             \
207
5
    E(HEADER_ADD_VERSION, -1400, true);                      \
208
5
    E(HEADER_DELETE_VERSION, -1401, true);                   \
209
5
    E(HEADER_ADD_PENDING_DELTA, -1402, true);                \
210
5
    E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true);          \
211
5
    E(HEADER_INVALID_FLAG, -1404, true);                     \
212
5
    E(HEADER_LOAD_INVALID_KEY, -1408, true);                 \
213
5
    E(HEADER_LOAD_JSON_HEADER, -1410, true);                 \
214
5
    E(HEADER_INIT_FAILED, -1411, true);                      \
215
5
    E(HEADER_PB_PARSE_FAILED, -1412, true);                  \
216
5
    E(HEADER_HAS_PENDING_DATA, -1413, true);                 \
217
5
    E(SCHEMA_SCHEMA_INVALID, -1500, true);                   \
218
5
    E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true);             \
219
5
    E(ALTER_MULTI_TABLE_ERR, -1600, true);                   \
220
5
    E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true);             \
221
5
    E(ALTER_STATUS_ERR, -1602, true);                        \
222
5
    E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true);     \
223
5
    E(SCHEMA_CHANGE_INFO_INVALID, -1604, true);              \
224
5
    E(QUERY_SPLIT_KEY_ERR, -1605, true);                     \
225
5
    E(DATA_QUALITY_ERR, -1606, false);                       \
226
5
    E(COLUMN_DATA_LOAD_BLOCK, -1700, true);                  \
227
5
    E(COLUMN_DATA_RECORD_INDEX, -1701, true);                \
228
5
    E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true);            \
229
5
    E(COLUMN_DATA_READ_VAR_INT, -1703, true);                \
230
5
    E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true);              \
231
5
    E(COLUMN_READ_STREAM, -1706, true);                      \
232
5
    E(COLUMN_STREAM_NOT_EXIST, -1716, true);                 \
233
5
    E(COLUMN_VALUE_NULL, -1717, true);                       \
234
5
    E(COLUMN_SEEK_ERROR, -1719, true);                       \
235
5
    E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true);            \
236
5
    E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true);             \
237
5
    E(DELETE_INVALID_CONDITION, -1900, true);                \
238
5
    E(DELETE_UPDATE_HEADER_FAILED, -1901, true);             \
239
5
    E(DELETE_SAVE_HEADER_FAILED, -1902, true);               \
240
5
    E(DELETE_INVALID_PARAMETERS, -1903, true);               \
241
5
    E(DELETE_INVALID_VERSION, -1904, true);                  \
242
5
    E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false);         \
243
5
    E(CUMULATIVE_REPEAT_INIT, -2001, true);                  \
244
5
    E(CUMULATIVE_INVALID_PARAMETERS, -2002, true);           \
245
5
    E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true);   \
246
5
    E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \
247
5
    E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true);          \
248
5
    E(CUMULATIVE_MISS_VERSION, -2006, true);                 \
249
5
    E(FULL_NO_SUITABLE_VERSION, -2008, false);               \
250
5
    E(FULL_MISS_VERSION, -2009, true);                       \
251
5
    E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false);         \
252
5
    E(META_INVALID_ARGUMENT, -3000, true);                   \
253
5
    E(META_OPEN_DB_ERROR, -3001, true);                      \
254
5
    E(META_KEY_NOT_FOUND, -3002, false);                     \
255
5
    E(META_GET_ERROR, -3003, true);                          \
256
5
    E(META_PUT_ERROR, -3004, true);                          \
257
5
    E(META_ITERATOR_ERROR, -3005, true);                     \
258
5
    E(META_DELETE_ERROR, -3006, true);                       \
259
5
    E(META_ALREADY_EXIST, -3007, true);                      \
260
5
    E(ROWSET_WRITER_INIT, -3100, true);                      \
261
5
    E(ROWSET_SAVE_FAILED, -3101, true);                      \
262
5
    E(ROWSET_GENERATE_ID_FAILED, -3102, true);               \
263
5
    E(ROWSET_DELETE_FILE_FAILED, -3103, true);               \
264
5
    E(ROWSET_BUILDER_INIT, -3104, true);                     \
265
5
    E(ROWSET_TYPE_NOT_FOUND, -3105, true);                   \
266
5
    E(ROWSET_ALREADY_EXIST, -3106, true);                    \
267
5
    E(ROWSET_CREATE_READER, -3107, true);                    \
268
5
    E(ROWSET_INVALID, -3108, true);                          \
269
5
    E(ROWSET_READER_INIT, -3110, true);                      \
270
5
    E(ROWSET_INVALID_STATE_TRANSITION, -3112, true);         \
271
5
    E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true);           \
272
5
    E(ROWSET_ADD_MIGRATION_V2, -3114, true);                 \
273
5
    E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false);         \
274
5
    E(ROWSET_RENAME_FILE_FAILED, -3116, false);              \
275
5
    E(SEGCOMPACTION_INIT_READER, -3117, false);              \
276
5
    E(SEGCOMPACTION_INIT_WRITER, -3118, false);              \
277
5
    E(SEGCOMPACTION_FAILED, -3119, false);                   \
278
5
    E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true);             \
279
5
    E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true);      \
280
5
    E(INVERTED_INDEX_INVALID_PARAMETERS, -6000, false);      \
281
5
    E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false);           \
282
5
    E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false);           \
283
5
    E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false);          \
284
5
    E(INVERTED_INDEX_BYPASS, -6004, false);                  \
285
5
    E(INVERTED_INDEX_NO_TERMS, -6005, false);                \
286
5
    E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true);       \
287
5
    E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false);        \
288
5
    E(INVERTED_INDEX_BUILD_WAITTING, -6008, false);          \
289
5
    E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false);         \
290
5
    E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false);        \
291
5
    E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false);          \
292
5
    E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false);          \
293
5
    E(KEY_NOT_FOUND, -7000, false);                          \
294
5
    E(KEY_ALREADY_EXISTS, -7001, false);                     \
295
5
    E(ENTRY_NOT_FOUND, -7002, false);                        \
296
5
    E(INVALID_TABLET_STATE, -7211, false);                   \
297
5
    E(ROWSETS_EXPIRED, -7311, false);                        \
298
5
    E(CGROUP_ERROR, -7411, false);                           \
299
    E(FATAL_ERROR, -7412, false);
300
301
// Define constexpr int error_code_name = error_code_value
302
#define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE;
303
APPLY_FOR_OLAP_ERROR_CODES(M)
304
#undef M
305
306
#define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name;
307
APPLY_FOR_THRIFT_ERROR_CODES(MM)
308
#undef MM
309
310
constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536;
311
struct ErrorCodeState {
312
    int16_t error_code = 0;
313
    bool stacktrace = true;
314
    std::string description;
315
    size_t count = 0; // Used for count the number of error happens
316
    std::mutex mutex; // lock guard for count state
317
};
318
extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM];
319
320
class ErrorCodeInitializer {
321
5
public:
322
327k
    ErrorCodeInitializer(int temp) : signal_value(temp) {
323
327k
        for (auto& error_state : error_states) {
324
327k
            error_state.error_code = 0;
325
5
        }
326
210
#define M(NAME, ENABLESTACKTRACE)                                  \
327
210
    error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \
328
210
    error_states[TStatusCode::NAME].description = #NAME;           \
329
210
    error_states[TStatusCode::NAME].error_code = TStatusCode::NAME;
330
5
        APPLY_FOR_THRIFT_ERROR_CODES(M)
331
#undef M
332
// In status.h, if error code > 0, then it means it will be used in TStatusCode and will
333
// also be used in FE.
334
// Other error codes that with error code < 0, will only be used in BE.
335
// We use abs(error code) as the index in error_states, so that these two kinds of error
336
// codes MUST not have overlap.
337
// Add an assert here to make sure the code in TStatusCode and other error code are not
338
5
// overlapped.
339
1.07k
#define M(NAME, ERRORCODE, ENABLESTACKTRACE)                    \
340
1.07k
    assert(error_states[abs(ERRORCODE)].error_code == 0);       \
341
1.07k
    error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \
342
1.07k
    error_states[abs(ERRORCODE)].error_code = ERRORCODE;
343
5
        APPLY_FOR_OLAP_ERROR_CODES(M)
344
5
#undef M
345
    }
346
5
347
    void check_init() const {
348
        //the signal value is 0, it means the global error states not inited, it's logical error
349
5
        // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time.
350
0
        if (signal_value == 0) {
351
0
            exit(-1);
352
5
        }
353
    }
354
355
private:
356
    int signal_value = 0;
357
};
358
359
extern ErrorCodeInitializer error_code_init;
360
} // namespace ErrorCode
361
362
class [[nodiscard]] Status {
363
365M
public:
364
    Status() : _code(ErrorCode::OK), _err_msg(nullptr) {}
365
366
63
    // used to convert Exception to Status
367
63
    Status(int code, std::string msg, std::string stack = "") : _code(code) {
368
63
        _err_msg = std::make_unique<ErrMsg>();
369
63
        _err_msg->_msg = std::move(msg);
370
8
        if (config::enable_stacktrace) {
371
8
            _err_msg->_stack = std::move(stack);
372
63
        }
373
    }
374
375
11.2M
    // copy c'tor makes copy of error detail so Status can be returned by value
376
    Status(const Status& rhs) { *this = rhs; }
377
378
1.32M
    // move c'tor
379
    Status(Status&& rhs) noexcept = default;
380
381
11.2M
    // same as copy c'tor
382
11.2M
    Status& operator=(const Status& rhs) {
383
11.2M
        _code = rhs._code;
384
4.19k
        if (rhs._err_msg) {
385
11.2M
            _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg);
386
        } else {
387
            // If rhs error msg is empty, then should also clear current error msg
388
            // For example, if rhs is OK and current status is error, then copy to current
389
11.2M
            // status, should clear current error message.
390
11.2M
            _err_msg.reset();
391
11.2M
        }
392
11.2M
        return *this;
393
    }
394
395
7.02M
    // move assign
396
7.02M
    Status& operator=(Status&& rhs) noexcept {
397
7.02M
        _code = rhs._code;
398
40.3k
        if (rhs._err_msg) {
399
6.98M
            _err_msg = std::move(rhs._err_msg);
400
6.98M
        } else {
401
6.98M
            _err_msg.reset();
402
7.02M
        }
403
7.02M
        return *this;
404
    }
405
406
18
    template <bool stacktrace = true>
407
18
    Status static create(const TStatus& status) {
408
18
        return Error<stacktrace>(
409
18
                status.status_code,
410
18
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
_ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE
Line
Count
Source
406
8
    template <bool stacktrace = true>
407
8
    Status static create(const TStatus& status) {
408
8
        return Error<stacktrace>(
409
8
                status.status_code,
410
8
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE
Line
Count
Source
406
10
    template <bool stacktrace = true>
407
10
    Status static create(const TStatus& status) {
408
10
        return Error<stacktrace>(
409
10
                status.status_code,
410
10
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
411
    }
412
413
194
    template <bool stacktrace = true>
414
194
    Status static create(const PStatus& pstatus) {
415
194
        return Error<stacktrace>(
416
194
                pstatus.status_code(),
417
194
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
_ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE
Line
Count
Source
413
194
    template <bool stacktrace = true>
414
194
    Status static create(const PStatus& pstatus) {
415
194
        return Error<stacktrace>(
416
194
                pstatus.status_code(),
417
194
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE
418
    }
419
420
366k
    template <int code, bool stacktrace = true, typename... Args>
421
366k
    Status static Error(std::string_view msg, Args&&... args) {
422
366k
        Status status;
423
366k
        status._code = code;
424
366k
        status._err_msg = std::make_unique<ErrMsg>();
425
299k
        if constexpr (sizeof...(args) == 0) {
426
299k
            status._err_msg->_msg = msg;
427
299k
        } else {
428
299k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
366k
        }
430
366k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
25
            // Delete the first one frame pointers, which are inside the status.h
433
25
            status._err_msg->_stack = get_stack_trace(1);
434
25
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
366k
        }
436
366k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
280
    template <int code, bool stacktrace = true, typename... Args>
421
280
    Status static Error(std::string_view msg, Args&&... args) {
422
280
        Status status;
423
280
        status._code = code;
424
280
        status._err_msg = std::make_unique<ErrMsg>();
425
280
        if constexpr (sizeof...(args) == 0) {
426
280
            status._err_msg->_msg = msg;
427
280
        } else {
428
280
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
280
        }
430
280
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
280
        }
436
280
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
17
    template <int code, bool stacktrace = true, typename... Args>
421
17
    Status static Error(std::string_view msg, Args&&... args) {
422
17
        Status status;
423
17
        status._code = code;
424
17
        status._err_msg = std::make_unique<ErrMsg>();
425
17
        if constexpr (sizeof...(args) == 0) {
426
17
            status._err_msg->_msg = msg;
427
17
        } else {
428
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
17
        }
430
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
17
        }
436
17
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2.75k
    template <int code, bool stacktrace = true, typename... Args>
421
2.75k
    Status static Error(std::string_view msg, Args&&... args) {
422
2.75k
        Status status;
423
2.75k
        status._code = code;
424
2.75k
        status._err_msg = std::make_unique<ErrMsg>();
425
2.75k
        if constexpr (sizeof...(args) == 0) {
426
2.75k
            status._err_msg->_msg = msg;
427
2.75k
        } else {
428
2.75k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2.75k
        }
430
2.75k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2.75k
        }
436
2.75k
        return status;
_ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
103
    template <int code, bool stacktrace = true, typename... Args>
421
103
    Status static Error(std::string_view msg, Args&&... args) {
422
103
        Status status;
423
103
        status._code = code;
424
103
        status._err_msg = std::make_unique<ErrMsg>();
425
103
        if constexpr (sizeof...(args) == 0) {
426
103
            status._err_msg->_msg = msg;
427
103
        } else {
428
103
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
103
        }
430
103
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
103
        }
436
103
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin259ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
30
    template <int code, bool stacktrace = true, typename... Args>
421
30
    Status static Error(std::string_view msg, Args&&... args) {
422
30
        Status status;
423
30
        status._code = code;
424
30
        status._err_msg = std::make_unique<ErrMsg>();
425
30
        if constexpr (sizeof...(args) == 0) {
426
30
            status._err_msg->_msg = msg;
427
30
        } else {
428
30
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
30
        }
430
30
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
30
        }
436
30
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    template <int code, bool stacktrace = true, typename... Args>
421
3
    Status static Error(std::string_view msg, Args&&... args) {
422
3
        Status status;
423
3
        status._code = code;
424
3
        status._err_msg = std::make_unique<ErrMsg>();
425
3
        if constexpr (sizeof...(args) == 0) {
426
3
            status._err_msg->_msg = msg;
427
3
        } else {
428
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
3
        }
430
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
3
        }
436
3
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
79
    template <int code, bool stacktrace = true, typename... Args>
421
79
    Status static Error(std::string_view msg, Args&&... args) {
422
79
        Status status;
423
79
        status._code = code;
424
79
        status._err_msg = std::make_unique<ErrMsg>();
425
79
        if constexpr (sizeof...(args) == 0) {
426
79
            status._err_msg->_msg = msg;
427
79
        } else {
428
79
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
79
        }
430
79
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
3
            // Delete the first one frame pointers, which are inside the status.h
433
3
            status._err_msg->_stack = get_stack_trace(1);
434
3
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
79
        }
436
79
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    template <int code, bool stacktrace = true, typename... Args>
421
6
    Status static Error(std::string_view msg, Args&&... args) {
422
6
        Status status;
423
6
        status._code = code;
424
6
        status._err_msg = std::make_unique<ErrMsg>();
425
6
        if constexpr (sizeof...(args) == 0) {
426
6
            status._err_msg->_msg = msg;
427
6
        } else {
428
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
6
        }
430
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
6
        }
436
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    template <int code, bool stacktrace = true, typename... Args>
421
7
    Status static Error(std::string_view msg, Args&&... args) {
422
7
        Status status;
423
7
        status._code = code;
424
7
        status._err_msg = std::make_unique<ErrMsg>();
425
7
        if constexpr (sizeof...(args) == 0) {
426
7
            status._err_msg->_msg = msg;
427
7
        } else {
428
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
7
        }
430
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
7
        }
436
7
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
37
    template <int code, bool stacktrace = true, typename... Args>
421
37
    Status static Error(std::string_view msg, Args&&... args) {
422
37
        Status status;
423
37
        status._code = code;
424
37
        status._err_msg = std::make_unique<ErrMsg>();
425
37
        if constexpr (sizeof...(args) == 0) {
426
37
            status._err_msg->_msg = msg;
427
37
        } else {
428
37
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
37
        }
430
37
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
37
        }
436
37
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
9
    template <int code, bool stacktrace = true, typename... Args>
421
9
    Status static Error(std::string_view msg, Args&&... args) {
422
9
        Status status;
423
9
        status._code = code;
424
9
        status._err_msg = std::make_unique<ErrMsg>();
425
9
        if constexpr (sizeof...(args) == 0) {
426
9
            status._err_msg->_msg = msg;
427
9
        } else {
428
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
9
        }
430
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
9
        }
436
9
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
13
    template <int code, bool stacktrace = true, typename... Args>
421
13
    Status static Error(std::string_view msg, Args&&... args) {
422
13
        Status status;
423
13
        status._code = code;
424
13
        status._err_msg = std::make_unique<ErrMsg>();
425
13
        if constexpr (sizeof...(args) == 0) {
426
13
            status._err_msg->_msg = msg;
427
13
        } else {
428
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
13
        }
430
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
13
        }
436
13
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    template <int code, bool stacktrace = true, typename... Args>
421
6
    Status static Error(std::string_view msg, Args&&... args) {
422
6
        Status status;
423
6
        status._code = code;
424
6
        status._err_msg = std::make_unique<ErrMsg>();
425
6
        if constexpr (sizeof...(args) == 0) {
426
6
            status._err_msg->_msg = msg;
427
6
        } else {
428
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
6
        }
430
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
6
            // Delete the first one frame pointers, which are inside the status.h
433
6
            status._err_msg->_stack = get_stack_trace(1);
434
6
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
6
        }
436
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA7_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA12_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
15
    template <int code, bool stacktrace = true, typename... Args>
421
15
    Status static Error(std::string_view msg, Args&&... args) {
422
15
        Status status;
423
15
        status._code = code;
424
15
        status._err_msg = std::make_unique<ErrMsg>();
425
15
        if constexpr (sizeof...(args) == 0) {
426
15
            status._err_msg->_msg = msg;
427
15
        } else {
428
15
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
15
        }
430
15
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
15
        }
436
15
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
17
    template <int code, bool stacktrace = true, typename... Args>
421
17
    Status static Error(std::string_view msg, Args&&... args) {
422
17
        Status status;
423
17
        status._code = code;
424
17
        status._err_msg = std::make_unique<ErrMsg>();
425
17
        if constexpr (sizeof...(args) == 0) {
426
17
            status._err_msg->_msg = msg;
427
17
        } else {
428
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
17
        }
430
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
16
            // Delete the first one frame pointers, which are inside the status.h
433
16
            status._err_msg->_stack = get_stack_trace(1);
434
16
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
17
        }
436
17
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
55
    template <int code, bool stacktrace = true, typename... Args>
421
55
    Status static Error(std::string_view msg, Args&&... args) {
422
55
        Status status;
423
55
        status._code = code;
424
55
        status._err_msg = std::make_unique<ErrMsg>();
425
55
        if constexpr (sizeof...(args) == 0) {
426
55
            status._err_msg->_msg = msg;
427
55
        } else {
428
55
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
55
        }
430
55
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
55
        }
436
55
        return status;
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    template <int code, bool stacktrace = true, typename... Args>
421
3
    Status static Error(std::string_view msg, Args&&... args) {
422
3
        Status status;
423
3
        status._code = code;
424
3
        status._err_msg = std::make_unique<ErrMsg>();
425
3
        if constexpr (sizeof...(args) == 0) {
426
3
            status._err_msg->_msg = msg;
427
3
        } else {
428
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
3
        }
430
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
3
        }
436
3
        return status;
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
17.6k
    template <int code, bool stacktrace = true, typename... Args>
421
17.6k
    Status static Error(std::string_view msg, Args&&... args) {
422
17.6k
        Status status;
423
17.6k
        status._code = code;
424
17.6k
        status._err_msg = std::make_unique<ErrMsg>();
425
17.6k
        if constexpr (sizeof...(args) == 0) {
426
17.6k
            status._err_msg->_msg = msg;
427
17.6k
        } else {
428
17.6k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
17.6k
        }
430
17.6k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
17.6k
        }
436
17.6k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
420
3
    template <int code, bool stacktrace = true, typename... Args>
421
3
    Status static Error(std::string_view msg, Args&&... args) {
422
3
        Status status;
423
3
        status._code = code;
424
3
        status._err_msg = std::make_unique<ErrMsg>();
425
3
        if constexpr (sizeof...(args) == 0) {
426
3
            status._err_msg->_msg = msg;
427
3
        } else {
428
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
3
        }
430
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
3
        }
436
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
52.0k
    template <int code, bool stacktrace = true, typename... Args>
421
52.0k
    Status static Error(std::string_view msg, Args&&... args) {
422
52.0k
        Status status;
423
52.0k
        status._code = code;
424
52.0k
        status._err_msg = std::make_unique<ErrMsg>();
425
52.0k
        if constexpr (sizeof...(args) == 0) {
426
52.0k
            status._err_msg->_msg = msg;
427
52.0k
        } else {
428
52.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
52.0k
        }
430
52.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
52.0k
        }
436
52.0k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
5
    template <int code, bool stacktrace = true, typename... Args>
421
5
    Status static Error(std::string_view msg, Args&&... args) {
422
5
        Status status;
423
5
        status._code = code;
424
5
        status._err_msg = std::make_unique<ErrMsg>();
425
5
        if constexpr (sizeof...(args) == 0) {
426
5
            status._err_msg->_msg = msg;
427
5
        } else {
428
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
5
        }
430
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
5
        }
436
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
22.1k
    template <int code, bool stacktrace = true, typename... Args>
421
22.1k
    Status static Error(std::string_view msg, Args&&... args) {
422
22.1k
        Status status;
423
22.1k
        status._code = code;
424
22.1k
        status._err_msg = std::make_unique<ErrMsg>();
425
22.1k
        if constexpr (sizeof...(args) == 0) {
426
22.1k
            status._err_msg->_msg = msg;
427
22.1k
        } else {
428
22.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
22.1k
        }
430
22.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
22.1k
        }
436
22.1k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
420
3
    template <int code, bool stacktrace = true, typename... Args>
421
3
    Status static Error(std::string_view msg, Args&&... args) {
422
3
        Status status;
423
3
        status._code = code;
424
3
        status._err_msg = std::make_unique<ErrMsg>();
425
3
        if constexpr (sizeof...(args) == 0) {
426
3
            status._err_msg->_msg = msg;
427
3
        } else {
428
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
3
        }
430
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
3
        }
436
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3000ELb1EJRNS_11TabletStateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
48
    template <int code, bool stacktrace = true, typename... Args>
421
48
    Status static Error(std::string_view msg, Args&&... args) {
422
48
        Status status;
423
48
        status._code = code;
424
48
        status._err_msg = std::make_unique<ErrMsg>();
425
48
        if constexpr (sizeof...(args) == 0) {
426
48
            status._err_msg->_msg = msg;
427
48
        } else {
428
48
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
48
        }
430
48
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
48
        }
436
48
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
9.40k
    template <int code, bool stacktrace = true, typename... Args>
421
9.40k
    Status static Error(std::string_view msg, Args&&... args) {
422
9.40k
        Status status;
423
9.40k
        status._code = code;
424
9.40k
        status._err_msg = std::make_unique<ErrMsg>();
425
9.40k
        if constexpr (sizeof...(args) == 0) {
426
9.40k
            status._err_msg->_msg = msg;
427
9.40k
        } else {
428
9.40k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
9.40k
        }
430
9.40k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
9.40k
        }
436
9.40k
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
24
    template <int code, bool stacktrace = true, typename... Args>
421
24
    Status static Error(std::string_view msg, Args&&... args) {
422
24
        Status status;
423
24
        status._code = code;
424
24
        status._err_msg = std::make_unique<ErrMsg>();
425
24
        if constexpr (sizeof...(args) == 0) {
426
24
            status._err_msg->_msg = msg;
427
24
        } else {
428
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
24
        }
430
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
24
        }
436
24
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
10.1k
    template <int code, bool stacktrace = true, typename... Args>
421
10.1k
    Status static Error(std::string_view msg, Args&&... args) {
422
10.1k
        Status status;
423
10.1k
        status._code = code;
424
10.1k
        status._err_msg = std::make_unique<ErrMsg>();
425
10.1k
        if constexpr (sizeof...(args) == 0) {
426
10.1k
            status._err_msg->_msg = msg;
427
10.1k
        } else {
428
10.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
10.1k
        }
430
10.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
10.1k
        }
436
10.1k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
12
    template <int code, bool stacktrace = true, typename... Args>
421
12
    Status static Error(std::string_view msg, Args&&... args) {
422
12
        Status status;
423
12
        status._code = code;
424
12
        status._err_msg = std::make_unique<ErrMsg>();
425
12
        if constexpr (sizeof...(args) == 0) {
426
12
            status._err_msg->_msg = msg;
427
12
        } else {
428
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
12
        }
430
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
12
        }
436
12
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJlRlS2_S2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3103ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
883
    template <int code, bool stacktrace = true, typename... Args>
421
883
    Status static Error(std::string_view msg, Args&&... args) {
422
883
        Status status;
423
883
        status._code = code;
424
883
        status._err_msg = std::make_unique<ErrMsg>();
425
883
        if constexpr (sizeof...(args) == 0) {
426
883
            status._err_msg->_msg = msg;
427
883
        } else {
428
883
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
883
        }
430
883
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
883
        }
436
883
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    template <int code, bool stacktrace = true, typename... Args>
421
6
    Status static Error(std::string_view msg, Args&&... args) {
422
6
        Status status;
423
6
        status._code = code;
424
6
        status._err_msg = std::make_unique<ErrMsg>();
425
6
        if constexpr (sizeof...(args) == 0) {
426
6
            status._err_msg->_msg = msg;
427
6
        } else {
428
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
6
        }
430
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
6
        }
436
6
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3105ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin608ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3118ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3117ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_jS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
8
    template <int code, bool stacktrace = true, typename... Args>
421
8
    Status static Error(std::string_view msg, Args&&... args) {
422
8
        Status status;
423
8
        status._code = code;
424
8
        status._err_msg = std::make_unique<ErrMsg>();
425
8
        if constexpr (sizeof...(args) == 0) {
426
8
            status._err_msg->_msg = msg;
427
8
        } else {
428
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
8
        }
430
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
8
        }
436
8
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
10
    template <int code, bool stacktrace = true, typename... Args>
421
10
    Status static Error(std::string_view msg, Args&&... args) {
422
10
        Status status;
423
10
        status._code = code;
424
10
        status._err_msg = std::make_unique<ErrMsg>();
425
10
        if constexpr (sizeof...(args) == 0) {
426
10
            status._err_msg->_msg = msg;
427
10
        } else {
428
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
10
        }
430
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
10
        }
436
10
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRjRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
12
    template <int code, bool stacktrace = true, typename... Args>
421
12
    Status static Error(std::string_view msg, Args&&... args) {
422
12
        Status status;
423
12
        status._code = code;
424
12
        status._err_msg = std::make_unique<ErrMsg>();
425
12
        if constexpr (sizeof...(args) == 0) {
426
12
            status._err_msg->_msg = msg;
427
12
        } else {
428
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
12
        }
430
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
12
        }
436
12
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1500ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3104ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    template <int code, bool stacktrace = true, typename... Args>
421
6
    Status static Error(std::string_view msg, Args&&... args) {
422
6
        Status status;
423
6
        status._code = code;
424
6
        status._err_msg = std::make_unique<ErrMsg>();
425
6
        if constexpr (sizeof...(args) == 0) {
426
6
            status._err_msg->_msg = msg;
427
6
        } else {
428
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
6
        }
430
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
6
        }
436
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin243ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin234ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin223ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin222ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
110k
    template <int code, bool stacktrace = true, typename... Args>
421
110k
    Status static Error(std::string_view msg, Args&&... args) {
422
110k
        Status status;
423
110k
        status._code = code;
424
110k
        status._err_msg = std::make_unique<ErrMsg>();
425
110k
        if constexpr (sizeof...(args) == 0) {
426
110k
            status._err_msg->_msg = msg;
427
110k
        } else {
428
110k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
110k
        }
430
110k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
110k
        }
436
110k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJRKlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2.27k
    template <int code, bool stacktrace = true, typename... Args>
421
2.27k
    Status static Error(std::string_view msg, Args&&... args) {
422
2.27k
        Status status;
423
2.27k
        status._code = code;
424
2.27k
        status._err_msg = std::make_unique<ErrMsg>();
425
2.27k
        if constexpr (sizeof...(args) == 0) {
426
2.27k
            status._err_msg->_msg = msg;
427
2.27k
        } else {
428
2.27k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2.27k
        }
430
2.27k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2.27k
        }
436
2.27k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2.38k
    template <int code, bool stacktrace = true, typename... Args>
421
2.38k
    Status static Error(std::string_view msg, Args&&... args) {
422
2.38k
        Status status;
423
2.38k
        status._code = code;
424
2.38k
        status._err_msg = std::make_unique<ErrMsg>();
425
2.38k
        if constexpr (sizeof...(args) == 0) {
426
2.38k
            status._err_msg->_msg = msg;
427
2.38k
        } else {
428
2.38k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2.38k
        }
430
2.38k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2.38k
        }
436
2.38k
        return status;
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.02k
    template <int code, bool stacktrace = true, typename... Args>
421
1.02k
    Status static Error(std::string_view msg, Args&&... args) {
422
1.02k
        Status status;
423
1.02k
        status._code = code;
424
1.02k
        status._err_msg = std::make_unique<ErrMsg>();
425
1.02k
        if constexpr (sizeof...(args) == 0) {
426
1.02k
            status._err_msg->_msg = msg;
427
1.02k
        } else {
428
1.02k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1.02k
        }
430
1.02k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1.02k
        }
436
1.02k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin506ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin405ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS0_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRilRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
2.21k
    template <int code, bool stacktrace = true, typename... Args>
421
2.21k
    Status static Error(std::string_view msg, Args&&... args) {
422
2.21k
        Status status;
423
2.21k
        status._code = code;
424
2.21k
        status._err_msg = std::make_unique<ErrMsg>();
425
2.21k
        if constexpr (sizeof...(args) == 0) {
426
2.21k
            status._err_msg->_msg = msg;
427
2.21k
        } else {
428
2.21k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2.21k
        }
430
2.21k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2.21k
        }
436
2.21k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin402ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin502ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNS_14TStorageFormat4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_lEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
11
    template <int code, bool stacktrace = true, typename... Args>
421
11
    Status static Error(std::string_view msg, Args&&... args) {
422
11
        Status status;
423
11
        status._code = code;
424
11
        status._err_msg = std::make_unique<ErrMsg>();
425
11
        if constexpr (sizeof...(args) == 0) {
426
11
            status._err_msg->_msg = msg;
427
11
        } else {
428
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
11
        }
430
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
11
        }
436
11
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJiRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin233ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin911ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRiS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi42ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
67.9k
    template <int code, bool stacktrace = true, typename... Args>
421
67.9k
    Status static Error(std::string_view msg, Args&&... args) {
422
67.9k
        Status status;
423
67.9k
        status._code = code;
424
67.9k
        status._err_msg = std::make_unique<ErrMsg>();
425
67.9k
        if constexpr (sizeof...(args) == 0) {
426
67.9k
            status._err_msg->_msg = msg;
427
67.9k
        } else {
428
67.9k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
67.9k
        }
430
67.9k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
67.9k
        }
436
67.9k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
17
    template <int code, bool stacktrace = true, typename... Args>
421
17
    Status static Error(std::string_view msg, Args&&... args) {
422
17
        Status status;
423
17
        status._code = code;
424
17
        status._err_msg = std::make_unique<ErrMsg>();
425
17
        if constexpr (sizeof...(args) == 0) {
426
17
            status._err_msg->_msg = msg;
427
17
        } else {
428
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
17
        }
430
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
17
        }
436
17
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
592
    template <int code, bool stacktrace = true, typename... Args>
421
592
    Status static Error(std::string_view msg, Args&&... args) {
422
592
        Status status;
423
592
        status._code = code;
424
592
        status._err_msg = std::make_unique<ErrMsg>();
425
592
        if constexpr (sizeof...(args) == 0) {
426
592
            status._err_msg->_msg = msg;
427
592
        } else {
428
592
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
592
        }
430
592
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
592
        }
436
592
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
17
    template <int code, bool stacktrace = true, typename... Args>
421
17
    Status static Error(std::string_view msg, Args&&... args) {
422
17
        Status status;
423
17
        status._code = code;
424
17
        status._err_msg = std::make_unique<ErrMsg>();
425
17
        if constexpr (sizeof...(args) == 0) {
426
17
            status._err_msg->_msg = msg;
427
17
        } else {
428
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
17
        }
430
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
17
        }
436
17
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    template <int code, bool stacktrace = true, typename... Args>
421
6
    Status static Error(std::string_view msg, Args&&... args) {
422
6
        Status status;
423
6
        status._code = code;
424
6
        status._err_msg = std::make_unique<ErrMsg>();
425
6
        if constexpr (sizeof...(args) == 0) {
426
6
            status._err_msg->_msg = msg;
427
6
        } else {
428
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
6
        }
430
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
6
        }
436
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    template <int code, bool stacktrace = true, typename... Args>
421
5
    Status static Error(std::string_view msg, Args&&... args) {
422
5
        Status status;
423
5
        status._code = code;
424
5
        status._err_msg = std::make_unique<ErrMsg>();
425
5
        if constexpr (sizeof...(args) == 0) {
426
5
            status._err_msg->_msg = msg;
427
5
        } else {
428
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
5
        }
430
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
5
        }
436
5
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi9ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7411ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
21.1k
    template <int code, bool stacktrace = true, typename... Args>
421
21.1k
    Status static Error(std::string_view msg, Args&&... args) {
422
21.1k
        Status status;
423
21.1k
        status._code = code;
424
21.1k
        status._err_msg = std::make_unique<ErrMsg>();
425
21.1k
        if constexpr (sizeof...(args) == 0) {
426
21.1k
            status._err_msg->_msg = msg;
427
21.1k
        } else {
428
21.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
21.1k
        }
430
21.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
21.1k
        }
436
21.1k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
812
    template <int code, bool stacktrace = true, typename... Args>
421
812
    Status static Error(std::string_view msg, Args&&... args) {
422
812
        Status status;
423
812
        status._code = code;
424
812
        status._err_msg = std::make_unique<ErrMsg>();
425
812
        if constexpr (sizeof...(args) == 0) {
426
812
            status._err_msg->_msg = msg;
427
812
        } else {
428
812
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
812
        }
430
812
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
812
        }
436
812
        return status;
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2.41k
    template <int code, bool stacktrace = true, typename... Args>
421
2.41k
    Status static Error(std::string_view msg, Args&&... args) {
422
2.41k
        Status status;
423
2.41k
        status._code = code;
424
2.41k
        status._err_msg = std::make_unique<ErrMsg>();
425
2.41k
        if constexpr (sizeof...(args) == 0) {
426
2.41k
            status._err_msg->_msg = msg;
427
2.41k
        } else {
428
2.41k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2.41k
        }
430
2.41k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2.41k
        }
436
2.41k
        return status;
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
27
    template <int code, bool stacktrace = true, typename... Args>
421
27
    Status static Error(std::string_view msg, Args&&... args) {
422
27
        Status status;
423
27
        status._code = code;
424
27
        status._err_msg = std::make_unique<ErrMsg>();
425
27
        if constexpr (sizeof...(args) == 0) {
426
27
            status._err_msg->_msg = msg;
427
27
        } else {
428
27
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
27
        }
430
27
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
27
        }
436
27
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
21.8k
    template <int code, bool stacktrace = true, typename... Args>
421
21.8k
    Status static Error(std::string_view msg, Args&&... args) {
422
21.8k
        Status status;
423
21.8k
        status._code = code;
424
21.8k
        status._err_msg = std::make_unique<ErrMsg>();
425
21.8k
        if constexpr (sizeof...(args) == 0) {
426
21.8k
            status._err_msg->_msg = msg;
427
21.8k
        } else {
428
21.8k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
21.8k
        }
430
21.8k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
21.8k
        }
436
21.8k
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
12.1k
    template <int code, bool stacktrace = true, typename... Args>
421
12.1k
    Status static Error(std::string_view msg, Args&&... args) {
422
12.1k
        Status status;
423
12.1k
        status._code = code;
424
12.1k
        status._err_msg = std::make_unique<ErrMsg>();
425
12.1k
        if constexpr (sizeof...(args) == 0) {
426
12.1k
            status._err_msg->_msg = msg;
427
12.1k
        } else {
428
12.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
12.1k
        }
430
12.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
12.1k
        }
436
12.1k
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
785
    template <int code, bool stacktrace = true, typename... Args>
421
785
    Status static Error(std::string_view msg, Args&&... args) {
422
785
        Status status;
423
785
        status._code = code;
424
785
        status._err_msg = std::make_unique<ErrMsg>();
425
785
        if constexpr (sizeof...(args) == 0) {
426
785
            status._err_msg->_msg = msg;
427
785
        } else {
428
785
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
785
        }
430
785
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
785
        }
436
785
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4.56k
    template <int code, bool stacktrace = true, typename... Args>
421
4.56k
    Status static Error(std::string_view msg, Args&&... args) {
422
4.56k
        Status status;
423
4.56k
        status._code = code;
424
4.56k
        status._err_msg = std::make_unique<ErrMsg>();
425
4.56k
        if constexpr (sizeof...(args) == 0) {
426
4.56k
            status._err_msg->_msg = msg;
427
4.56k
        } else {
428
4.56k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4.56k
        }
430
4.56k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4.56k
        }
436
4.56k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
48
    template <int code, bool stacktrace = true, typename... Args>
421
48
    Status static Error(std::string_view msg, Args&&... args) {
422
48
        Status status;
423
48
        status._code = code;
424
48
        status._err_msg = std::make_unique<ErrMsg>();
425
48
        if constexpr (sizeof...(args) == 0) {
426
48
            status._err_msg->_msg = msg;
427
48
        } else {
428
48
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
48
        }
430
48
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
48
        }
436
48
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbiRKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiRKS7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
9
    template <int code, bool stacktrace = true, typename... Args>
421
9
    Status static Error(std::string_view msg, Args&&... args) {
422
9
        Status status;
423
9
        status._code = code;
424
9
        status._err_msg = std::make_unique<ErrMsg>();
425
9
        if constexpr (sizeof...(args) == 0) {
426
9
            status._err_msg->_msg = msg;
427
9
        } else {
428
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
9
        }
430
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
9
        }
436
9
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
10
    template <int code, bool stacktrace = true, typename... Args>
421
10
    Status static Error(std::string_view msg, Args&&... args) {
422
10
        Status status;
423
10
        status._code = code;
424
10
        status._err_msg = std::make_unique<ErrMsg>();
425
10
        if constexpr (sizeof...(args) == 0) {
426
10
            status._err_msg->_msg = msg;
427
10
        } else {
428
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
10
        }
430
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
10
        }
436
10
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRmS6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT1_
Line
Count
Source
420
18
    template <int code, bool stacktrace = true, typename... Args>
421
18
    Status static Error(std::string_view msg, Args&&... args) {
422
18
        Status status;
423
18
        status._code = code;
424
18
        status._err_msg = std::make_unique<ErrMsg>();
425
18
        if constexpr (sizeof...(args) == 0) {
426
18
            status._err_msg->_msg = msg;
427
18
        } else {
428
18
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
18
        }
430
18
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
18
        }
436
18
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEPKcEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    template <int code, bool stacktrace = true, typename... Args>
421
2
    Status static Error(std::string_view msg, Args&&... args) {
422
2
        Status status;
423
2
        status._code = code;
424
2
        status._err_msg = std::make_unique<ErrMsg>();
425
2
        if constexpr (sizeof...(args) == 0) {
426
2
            status._err_msg->_msg = msg;
427
2
        } else {
428
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
2
        }
430
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
2
        }
436
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    template <int code, bool stacktrace = true, typename... Args>
421
4
    Status static Error(std::string_view msg, Args&&... args) {
422
4
        Status status;
423
4
        status._code = code;
424
4
        status._err_msg = std::make_unique<ErrMsg>();
425
4
        if constexpr (sizeof...(args) == 0) {
426
4
            status._err_msg->_msg = msg;
427
4
        } else {
428
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
4
        }
430
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
4
        }
436
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
26
    template <int code, bool stacktrace = true, typename... Args>
421
26
    Status static Error(std::string_view msg, Args&&... args) {
422
26
        Status status;
423
26
        status._code = code;
424
26
        status._err_msg = std::make_unique<ErrMsg>();
425
26
        if constexpr (sizeof...(args) == 0) {
426
26
            status._err_msg->_msg = msg;
427
26
        } else {
428
26
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
26
        }
430
26
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
26
        }
436
26
        return status;
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
420
1
    template <int code, bool stacktrace = true, typename... Args>
421
1
    Status static Error(std::string_view msg, Args&&... args) {
422
1
        Status status;
423
1
        status._code = code;
424
1
        status._err_msg = std::make_unique<ErrMsg>();
425
1
        if constexpr (sizeof...(args) == 0) {
426
1
            status._err_msg->_msg = msg;
427
1
        } else {
428
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
429
1
        }
430
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
431
            config::enable_stacktrace) {
432
0
            // Delete the first one frame pointers, which are inside the status.h
433
0
            status._err_msg->_stack = get_stack_trace(1);
434
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
435
1
        }
436
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7311ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
437
    }
438
439
17.8k
    template <bool stacktrace = true, typename... Args>
440
17.8k
    Status static Error(int code, std::string_view msg, Args&&... args) {
441
17.8k
        Status status;
442
17.8k
        status._code = code;
443
17.8k
        status._err_msg = std::make_unique<ErrMsg>();
444
0
        if constexpr (sizeof...(args) == 0) {
445
0
            status._err_msg->_msg = msg;
446
0
        } else {
447
0
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
448
17.8k
        }
449
17.8k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
450
0
            config::enable_stacktrace) {
451
0
            status._err_msg->_stack = get_stack_trace(1);
452
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
453
17.8k
        }
454
17.8k
        return status;
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
439
17.6k
    template <bool stacktrace = true, typename... Args>
440
17.6k
    Status static Error(int code, std::string_view msg, Args&&... args) {
441
17.6k
        Status status;
442
17.6k
        status._code = code;
443
17.6k
        status._err_msg = std::make_unique<ErrMsg>();
444
17.6k
        if constexpr (sizeof...(args) == 0) {
445
17.6k
            status._err_msg->_msg = msg;
446
17.6k
        } else {
447
17.6k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
448
17.6k
        }
449
17.6k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
450
0
            config::enable_stacktrace) {
451
0
            status._err_msg->_stack = get_stack_trace(1);
452
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
453
17.6k
        }
454
17.6k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
439
212
    template <bool stacktrace = true, typename... Args>
440
212
    Status static Error(int code, std::string_view msg, Args&&... args) {
441
212
        Status status;
442
212
        status._code = code;
443
212
        status._err_msg = std::make_unique<ErrMsg>();
444
212
        if constexpr (sizeof...(args) == 0) {
445
212
            status._err_msg->_msg = msg;
446
212
        } else {
447
212
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
448
212
        }
449
212
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
450
0
            config::enable_stacktrace) {
451
0
            status._err_msg->_stack = get_stack_trace(1);
452
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
453
212
        }
454
212
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
455
    }
456
361M
457
    static Status OK() { return {}; }
458
459
0
    template <bool stacktrace = true, typename... Args>
460
0
    static Status FatalError(std::string_view msg, Args&&... args) {
461
0
#ifndef NDEBUG
462
0
        LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...);
463
0
#endif
464
0
        return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...);
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
465
    }
466
467
// default have stacktrace. could disable manually.
468
#define ERROR_CTOR(name, code)                                                       \
469
163k
    template <bool stacktrace = true, typename... Args>                              \
470
163k
    static Status name(std::string_view msg, Args&&... args) {                       \
471
163k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
17
    template <bool stacktrace = true, typename... Args>                              \
470
17
    static Status name(std::string_view msg, Args&&... args) {                       \
471
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    template <bool stacktrace = true, typename... Args>                              \
470
2
    static Status name(std::string_view msg, Args&&... args) {                       \
471
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    template <bool stacktrace = true, typename... Args>                              \
470
3
    static Status name(std::string_view msg, Args&&... args) {                       \
471
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
78
    template <bool stacktrace = true, typename... Args>                              \
470
78
    static Status name(std::string_view msg, Args&&... args) {                       \
471
78
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
9
    template <bool stacktrace = true, typename... Args>                              \
470
9
    static Status name(std::string_view msg, Args&&... args) {                       \
471
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    template <bool stacktrace = true, typename... Args>                              \
470
4
    static Status name(std::string_view msg, Args&&... args) {                       \
471
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
13
    template <bool stacktrace = true, typename... Args>                              \
470
13
    static Status name(std::string_view msg, Args&&... args) {                       \
471
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    template <bool stacktrace = true, typename... Args>                              \
470
2
    static Status name(std::string_view msg, Args&&... args) {                       \
471
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
6
    template <bool stacktrace = true, typename... Args>                              \
470
6
    static Status name(std::string_view msg, Args&&... args) {                       \
471
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
15
    template <bool stacktrace = true, typename... Args>                              \
470
15
    static Status name(std::string_view msg, Args&&... args) {                       \
471
15
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
17
    template <bool stacktrace = true, typename... Args>                              \
470
17
    static Status name(std::string_view msg, Args&&... args) {                       \
471
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
52.0k
    template <bool stacktrace = true, typename... Args>                              \
470
52.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
471
52.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
54
    template <bool stacktrace = true, typename... Args>                              \
470
54
    static Status name(std::string_view msg, Args&&... args) {                       \
471
54
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
469
3
    template <bool stacktrace = true, typename... Args>                              \
470
3
    static Status name(std::string_view msg, Args&&... args) {                       \
471
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
6
    template <bool stacktrace = true, typename... Args>                              \
470
6
    static Status name(std::string_view msg, Args&&... args) {                       \
471
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
12
    template <bool stacktrace = true, typename... Args>                              \
470
12
    static Status name(std::string_view msg, Args&&... args) {                       \
471
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
6
    template <bool stacktrace = true, typename... Args>                              \
470
6
    static Status name(std::string_view msg, Args&&... args) {                       \
471
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
110k
    template <bool stacktrace = true, typename... Args>                              \
470
110k
    static Status name(std::string_view msg, Args&&... args) {                       \
471
110k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
17
    template <bool stacktrace = true, typename... Args>                              \
470
17
    static Status name(std::string_view msg, Args&&... args) {                       \
471
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    template <bool stacktrace = true, typename... Args>                              \
470
4
    static Status name(std::string_view msg, Args&&... args) {                       \
471
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
592
    template <bool stacktrace = true, typename... Args>                              \
470
592
    static Status name(std::string_view msg, Args&&... args) {                       \
471
592
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
2
    template <bool stacktrace = true, typename... Args>                              \
470
2
    static Status name(std::string_view msg, Args&&... args) {                       \
471
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    template <bool stacktrace = true, typename... Args>                              \
470
5
    static Status name(std::string_view msg, Args&&... args) {                       \
471
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
27
    template <bool stacktrace = true, typename... Args>                              \
470
27
    static Status name(std::string_view msg, Args&&... args) {                       \
471
27
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
10
    template <bool stacktrace = true, typename... Args>                              \
470
10
    static Status name(std::string_view msg, Args&&... args) {                       \
471
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    template <bool stacktrace = true, typename... Args>                              \
470
4
    static Status name(std::string_view msg, Args&&... args) {                       \
471
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRmS6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    template <bool stacktrace = true, typename... Args>                              \
470
2
    static Status name(std::string_view msg, Args&&... args) {                       \
471
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    template <bool stacktrace = true, typename... Args>                              \
470
4
    static Status name(std::string_view msg, Args&&... args) {                       \
471
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
469
1
    template <bool stacktrace = true, typename... Args>                              \
470
1
    static Status name(std::string_view msg, Args&&... args) {                       \
471
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
472
    }
473
474
// default have no stacktrace. could enable manually.
475
#define ERROR_CTOR_NOSTACK(name, code)                                               \
476
160k
    template <bool stacktrace = false, typename... Args>                             \
477
160k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
160k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
196
    template <bool stacktrace = false, typename... Args>                             \
477
196
    static Status name(std::string_view msg, Args&&... args) {                       \
478
196
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
7
    template <bool stacktrace = false, typename... Args>                             \
477
7
    static Status name(std::string_view msg, Args&&... args) {                       \
478
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
37
    template <bool stacktrace = false, typename... Args>                             \
477
37
    static Status name(std::string_view msg, Args&&... args) {                       \
478
37
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
5
    template <bool stacktrace = false, typename... Args>                             \
477
5
    static Status name(std::string_view msg, Args&&... args) {                       \
478
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
22.1k
    template <bool stacktrace = false, typename... Args>                             \
477
22.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
22.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
9.40k
    template <bool stacktrace = false, typename... Args>                             \
477
9.40k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
9.40k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
4
    template <bool stacktrace = false, typename... Args>                             \
477
4
    static Status name(std::string_view msg, Args&&... args) {                       \
478
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
476
2
    template <bool stacktrace = false, typename... Args>                             \
477
2
    static Status name(std::string_view msg, Args&&... args) {                       \
478
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    template <bool stacktrace = false, typename... Args>                             \
477
4
    static Status name(std::string_view msg, Args&&... args) {                       \
478
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
67.9k
    template <bool stacktrace = false, typename... Args>                             \
477
67.9k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
67.9k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
6
    template <bool stacktrace = false, typename... Args>                             \
477
6
    static Status name(std::string_view msg, Args&&... args) {                       \
478
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
21.1k
    template <bool stacktrace = false, typename... Args>                             \
477
21.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
21.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
21.8k
    template <bool stacktrace = false, typename... Args>                             \
477
21.8k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
21.8k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
12.1k
    template <bool stacktrace = false, typename... Args>                             \
477
12.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
12.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
785
    template <bool stacktrace = false, typename... Args>                             \
477
785
    static Status name(std::string_view msg, Args&&... args) {                       \
478
785
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4.56k
    template <bool stacktrace = false, typename... Args>                             \
477
4.56k
    static Status name(std::string_view msg, Args&&... args) {                       \
478
4.56k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
48
    template <bool stacktrace = false, typename... Args>                             \
477
48
    static Status name(std::string_view msg, Args&&... args) {                       \
478
48
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
9
    template <bool stacktrace = false, typename... Args>                             \
477
9
    static Status name(std::string_view msg, Args&&... args) {                       \
478
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT0_
Line
Count
Source
476
18
    template <bool stacktrace = false, typename... Args>                             \
477
18
    static Status name(std::string_view msg, Args&&... args) {                       \
478
18
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEPKcEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
26
    template <bool stacktrace = false, typename... Args>                             \
477
26
    static Status name(std::string_view msg, Args&&... args) {                       \
478
26
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
476
1
    template <bool stacktrace = false, typename... Args>                             \
477
1
    static Status name(std::string_view msg, Args&&... args) {                       \
478
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
479
    }
480
481
    ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT)
482
    ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED)
483
    ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED)
484
    ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT)
485
    ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH)
486
    ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE)
487
    ERROR_CTOR(Corruption, CORRUPTION)
488
    ERROR_CTOR(IOError, IO_ERROR)
489
    ERROR_CTOR(NotFound, NOT_FOUND)
490
    ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST)
491
    ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR)
492
    ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE)
493
    ERROR_CTOR(InternalError, INTERNAL_ERROR)
494
    ERROR_CTOR(RuntimeError, RUNTIME_ERROR)
495
    ERROR_CTOR_NOSTACK(Cancelled, CANCELLED)
496
    ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED)
497
    ERROR_CTOR(RpcError, THRIFT_RPC_ERROR)
498
    ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT)
499
    ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS)
500
    ERROR_CTOR(Uninitialized, UNINITIALIZED)
501
    ERROR_CTOR(Aborted, ABORTED)
502
    ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR)
503
    ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED)
504
    ERROR_CTOR(HttpError, HTTP_ERROR)
505
    ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN)
506
    ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR)
507
    ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED)
508
    ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR)
509
#undef ERROR_CTOR
510
511
1.00M
    template <int code>
512
1.00M
    bool is() const {
513
1.00M
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv
_ZNK5doris6Status2isILin3115EEEbv
Line
Count
Source
511
2
    template <int code>
512
2
    bool is() const {
513
2
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv
_ZNK5doris6Status2isILi31EEEbv
Line
Count
Source
511
28
    template <int code>
512
28
    bool is() const {
513
28
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi35EEEbv
_ZNK5doris6Status2isILin7000EEEbv
Line
Count
Source
511
5
    template <int code>
512
5
    bool is() const {
513
5
        return code == _code;
_ZNK5doris6Status2isILin7001EEEbv
Line
Count
Source
511
4
    template <int code>
512
4
    bool is() const {
513
4
        return code == _code;
_ZNK5doris6Status2isILi5EEEbv
Line
Count
Source
511
8.36k
    template <int code>
512
8.36k
    bool is() const {
513
8.36k
        return code == _code;
_ZNK5doris6Status2isILin3002EEEbv
Line
Count
Source
511
32.5k
    template <int code>
512
32.5k
    bool is() const {
513
32.5k
        return code == _code;
_ZNK5doris6Status2isILi34EEEbv
Line
Count
Source
511
2
    template <int code>
512
2
    bool is() const {
513
2
        return code == _code;
_ZNK5doris6Status2isILin406EEEbv
Line
Count
Source
511
2.21k
    template <int code>
512
2.21k
    bool is() const {
513
2.21k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv
_ZNK5doris6Status2isILi6EEEbv
Line
Count
Source
511
4
    template <int code>
512
4
    bool is() const {
513
4
        return code == _code;
_ZNK5doris6Status2isILin908EEEbv
Line
Count
Source
511
2.27k
    template <int code>
512
2.27k
    bool is() const {
513
2.27k
        return code == _code;
_ZNK5doris6Status2isILin7002EEEbv
Line
Count
Source
511
6.33k
    template <int code>
512
6.33k
    bool is() const {
513
6.33k
        return code == _code;
_ZNK5doris6Status2isILi30EEEbv
Line
Count
Source
511
789k
    template <int code>
512
789k
    bool is() const {
513
789k
        return code == _code;
_ZNK5doris6Status2isILin2000EEEbv
Line
Count
Source
511
2.38k
    template <int code>
512
2.38k
    bool is() const {
513
2.38k
        return code == _code;
_ZNK5doris6Status2isILi32EEEbv
Line
Count
Source
511
46.7k
    template <int code>
512
46.7k
    bool is() const {
513
46.7k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin6004EEEbv
_ZNK5doris6Status2isILi39EEEbv
Line
Count
Source
511
110k
    template <int code>
512
110k
    bool is() const {
513
110k
        return code == _code;
_ZNK5doris6Status2isILin808EEEbv
Line
Count
Source
511
1.03k
    template <int code>
512
1.03k
    bool is() const {
513
1.03k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv
_ZNK5doris6Status2isILin6003EEEbv
Line
Count
Source
511
17
    template <int code>
512
17
    bool is() const {
513
17
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi14EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi46EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv
_ZNK5doris6Status2isILi11EEEbv
Line
Count
Source
511
1
    template <int code>
512
1
    bool is() const {
513
1
        return code == _code;
_ZNK5doris6Status2isILin257EEEbv
Line
Count
Source
511
262
    template <int code>
512
262
    bool is() const {
513
262
        return code == _code;
_ZNK5doris6Status2isILin258EEEbv
Line
Count
Source
511
180
    template <int code>
512
180
    bool is() const {
513
180
        return code == _code;
_ZNK5doris6Status2isILi42EEEbv
Line
Count
Source
511
592
    template <int code>
512
592
    bool is() const {
513
592
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv
_ZNK5doris6Status2isILin259EEEbv
Line
Count
Source
511
2.85k
    template <int code>
512
2.85k
    bool is() const {
513
2.85k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi73EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi8EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi37EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi9EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin7311EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv
514
    }
515
0
516
    void set_code(int code) { _code = code; }
517
371M
518
    bool ok() const { return _code == ErrorCode::OK; }
519
520
    // Convert into TStatus.
521
    void to_thrift(TStatus* status) const;
522
    TStatus to_thrift() const;
523
    void to_protobuf(PStatus* status) const;
524
525
    std::string to_string() const;
526
    std::string to_string_no_stack() const;
527
528
    /// @return A json representation of this status.
529
    std::string to_json() const;
530
24.1k
531
    int code() const { return _code; }
532
533
    /// Clone this status and add the specified prefix to the message.
534
    ///
535
    /// If this status is OK, then an OK status will be returned.
536
    ///
537
    /// @param [in] msg
538
    ///   The message to prepend.
539
    /// @return A ref to Status object
540
    Status& prepend(std::string_view msg);
541
542
    /// Add the specified suffix to the message.
543
    ///
544
    /// If this status is OK, then an OK status will be returned.
545
    ///
546
    /// @param [in] msg
547
    ///   The message to append.
548
    /// @return A ref to Status object
549
    Status& append(std::string_view msg);
550
551
74.0M
    // if(!status) or if (status) will use this operator
552
    operator bool() const { return this->ok(); }
553
554
    // Used like if ASSERT_EQ(res, Status::OK())
555
    // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state
556
53.0k
    // ignore error messages during comparison
557
    bool operator==(const Status& st) const { return _code == st._code; }
558
559
1.25M
    // Used like if ASSERT_NE(res, Status::OK())
560
    bool operator!=(const Status& st) const { return _code != st._code; }
561
562
    friend std::ostream& operator<<(std::ostream& ostr, const Status& status);
563
35.5k
564
    std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); }
565
0
566
    std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; }
567
568
    friend io::ObjectStorageStatus convert_to_obj_response(Status st);
569
570
private:
571
    int _code;
572
    struct ErrMsg {
573
        std::string _msg;
574
        std::string _stack;
575
    };
576
    std::unique_ptr<ErrMsg> _err_msg;
577
15.3k
578
15.3k
    std::string code_as_string() const {
579
15.3k
        return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code))
580
15.3k
                               : fmt::format("E{}", (int16_t)_code);
581
    }
582
};
583
584
// There are many thread using status to indicate the cancel state, one thread may update it and
585
// the other thread will read it. Status is not thread safe, for example, if one thread is update it
586
// and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and
587
// it is deconstructed during copy method.
588
// And also we could not use lock, because we need get status frequently to check if it is cancelled.
589
// The default value is ok.
590
class AtomicStatus {
591
452k
public:
592
    AtomicStatus() : error_st_(Status::OK()) {}
593
3.56M
594
    bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; }
595
125
596
    bool update(const Status& new_status) {
597
125
        // If new status is normal, or the old status is abnormal, then not need update
598
82
        if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) {
599
82
            return false;
600
43
        }
601
43
        std::lock_guard l(mutex_);
602
0
        if (error_code_.load(std::memory_order_acquire) != 0) {
603
0
            return false;
604
43
        }
605
43
        error_st_ = new_status;
606
43
        error_code_.store(new_status.code(), std::memory_order_release);
607
43
        return true;
608
    }
609
8
610
8
    void reset() {
611
8
        std::lock_guard l(mutex_);
612
8
        error_st_ = Status::OK();
613
8
        error_code_ = 0;
614
    }
615
616
    // will copy a new status object to avoid concurrency
617
13.8k
    // This stauts could only be called when ok==false
618
13.8k
    Status status() const {
619
13.8k
        std::lock_guard l(mutex_);
620
13.8k
        return error_st_;
621
    }
622
623
    AtomicStatus(const AtomicStatus&) = delete;
624
    void operator=(const AtomicStatus&) = delete;
625
626
private:
627
    std::atomic_int16_t error_code_ = 0;
628
    Status error_st_;
629
    // mutex's lock is not a const method, but we will use this mutex in
630
    // some const method, so that it should be mutable.
631
    mutable std::mutex mutex_;
632
};
633
15.2k
634
15.2k
inline std::ostream& operator<<(std::ostream& ostr, const Status& status) {
635
15.2k
    ostr << '[' << status.code_as_string() << ']';
636
15.2k
    ostr << status.msg();
637
46
    if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) {
638
46
        ostr << '\n' << status._err_msg->_stack;
639
15.2k
    }
640
15.2k
    return ostr;
641
}
642
15.0k
643
15.0k
inline std::string Status::to_string() const {
644
15.0k
    std::stringstream ss;
645
15.0k
    ss << *this;
646
15.0k
    return ss.str();
647
}
648
0
649
0
inline std::string Status::to_string_no_stack() const {
650
0
    return fmt::format("[{}]{}", code_as_string(), msg());
651
}
652
653
// some generally useful macros
654
266M
#define RETURN_IF_ERROR(stmt)           \
655
266M
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv
Line
Count
Source
655
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv
Line
Count
Source
655
4
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv
Line
Count
Source
655
4
    do {                                \
beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEENK3$_0clEv
Line
Count
Source
655
9.14k
    do {                                \
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv
Line
Count
Source
655
619
    do {                                \
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_
Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKNS_7VersionEPS6_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKSt6vectorINS_7VersionESaISA_EEPS6_PbENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: wal_manager.cpp:_ZZN5doris10WalManager18_replay_backgroundEvENK3$_0clEv
Unexecuted instantiation: wal_table.cpp:_ZZN5doris8WalTable16_get_column_infoEllRSt3mapIlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIlESaISt4pairIKlS7_EEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
fragment_mgr.cpp:_ZZN5doris11FragmentMgr24_get_or_create_query_ctxERKNS_23TPipelineFragmentParamsERKNS_27TPipelineFragmentParamsListENS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENK3$_0clERN5phmap13flat_hash_mapINS_9TUniqueIdESt8weak_ptrIS9_ENSD_4HashISF_EENSD_7EqualToISF_EESaISt4pairIKSF_SH_EEEE
Line
Count
Source
655
628
    do {                                \
Unexecuted instantiation: group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueEllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEv
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueEllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEvENKUlvE_clEv
load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv
Line
Count
Source
655
40
    do {                                \
Unexecuted instantiation: load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv
Line
Count
Source
655
4
    do {                                \
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv
Line
Count
Source
655
47
    do {                                \
Unexecuted instantiation: multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe10exec_plansEPNS_7ExecEnvERKSt6vectorINS_23TPipelineFragmentParamsESaIS5_EEENK3$_0clEPNS_12RuntimeStateEPNS_6StatusE
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
655
2
    do {                                \
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor14pre_commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
655
2
    do {                                \
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorEEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE
Line
Count
Source
655
2
    do {                                \
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEElRSt6vectorINS_14SlotDescriptorESaISB_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSM_SM_SM_RSt13unordered_mapINS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESt8equal_toISO_ESaISt4pairIKSO_SP_EEERNS_10vectorized5BlockEENK3$_3clEv
Line
Count
Source
655
12.8k
    do {                                \
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEElRSt6vectorINS_14SlotDescriptorESaISB_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSM_SM_SM_RSt13unordered_mapINS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESt8equal_toISO_ESaISt4pairIKSO_SP_EEERNS_10vectorized5BlockEENK3$_4clEv
Unexecuted instantiation: http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
655
2
    do {                                \
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE0_clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_2clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_3clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_4clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_5clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_6clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_7clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgERKN9rapidjson12GenericValueINS2_4UTF8IcEENS2_19MemoryPoolAllocatorINS2_12CrtAllocatorEEEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESH_PbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgERKN9rapidjson12GenericValueINS2_4UTF8IcEENS2_19MemoryPoolAllocatorINS2_12CrtAllocatorEEEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESH_PbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24read_one_line_from_rangeERKNS_14TFileRangeDescEjPNS0_5BlockERKNS_23ExternalFileMappingInfoEPlSA_ENK3$_0clEv
Line
Count
Source
655
334
    do {                                \
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24read_one_line_from_rangeERKNS_14TFileRangeDescEjPNS0_5BlockERKNS_23ExternalFileMappingInfoEPlSA_ENK3$_1clEv
Line
Count
Source
655
24
    do {                                \
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_
Line
Count
Source
655
29
    do {                                \
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SG_IbLb0EEEEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESI_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESI_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SG_IbLb1EEEEDaSB_SC_SD_
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESG_EEDaSB_SC_
Line
Count
Source
655
64
    do {                                \
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESG_EEDaSB_SC_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_IbLb0EEEEDaSB_SC_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_IbLb1EEEEDaSB_SC_
spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv
Line
Count
Source
655
73
    do {                                \
async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv
Line
Count
Source
655
6
    do {                                \
Unexecuted instantiation: autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv
Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev
Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_
Line
Count
Source
655
562
    do {                                \
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_
Unexecuted instantiation: meta_scanner.cpp:_ZZN5doris10vectorized11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv
Unexecuted instantiation: schema_scanner.cpp:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv
Unexecuted instantiation: schema_scanner.cpp:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv
Unexecuted instantiation: schema_partitions_scanner.cpp:_ZZN5doris23SchemaPartitionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Line
Count
Source
655
15
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
Line
Count
Source
655
3
    do {                                \
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Line
Count
Source
655
9
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Line
Count
Source
655
9
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
Line
Count
Source
655
3
    do {                                \
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Line
Count
Source
655
6
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
Line
Count
Source
655
3
    do {                                \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_
pipeline_fragment_context.cpp:_ZZN5doris8pipeline23PipelineFragmentContext21_build_pipeline_tasksERKNS_23TPipelineFragmentParamsEPNS_10ThreadPoolEENK3$_1clEv
Line
Count
Source
655
66
    do {                                \
task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv
Line
Count
Source
655
454
    do {                                \
Unexecuted instantiation: cloud_meta_mgr.cpp:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESF_
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
656
266M
        Status _status_ = (stmt);       \
657
23.5k
        if (UNLIKELY(!_status_.ok())) { \
658
23.5k
            return _status_;            \
659
266M
        }                               \
660
    } while (false)
661
662
99.3k
#define PROPAGATE_FALSE(stmt)                     \
663
99.3k
    do {                                          \
664
458
        if (UNLIKELY(!static_cast<bool>(stmt))) { \
665
458
            return false;                         \
666
99.3k
        }                                         \
667
    } while (false)
668
669
1.21M
#define THROW_IF_ERROR(stmt)            \
670
1.21M
    do {                                \
671
1.21M
        Status _status_ = (stmt);       \
672
1
        if (UNLIKELY(!_status_.ok())) { \
673
1
            throw Exception(_status_);  \
674
1.21M
        }                               \
675
    } while (false)
676
677
#define RETURN_IF_STATUS_ERROR(status, stmt) \
678
    do {                                     \
679
        status = (stmt);                     \
680
        if (UNLIKELY(!status.ok())) {        \
681
            return;                          \
682
        }                                    \
683
    } while (false)
684
685
4
#define EXIT_IF_ERROR(stmt)             \
686
4
    do {                                \
687
4
        Status _status_ = (stmt);       \
688
0
        if (UNLIKELY(!_status_.ok())) { \
689
0
            LOG(ERROR) << _status_;     \
690
0
            exit(1);                    \
691
4
        }                               \
692
    } while (false)
693
694
38.8k
#define RETURN_FALSE_IF_ERROR(stmt)   \
695
38.8k
    do {                              \
696
38.8k
        Status status = (stmt);       \
697
0
        if (UNLIKELY(!status.ok())) { \
698
0
            return false;             \
699
38.8k
        }                             \
700
    } while (false)
701
702
/// @brief Emit a warning if @c to_call returns a bad status.
703
19.7k
#define WARN_IF_ERROR(to_call, warning_prefix)              \
704
19.7k
    do {                                                    \
705
19.7k
        Status _s = (to_call);                              \
706
0
        if (UNLIKELY(!_s.ok())) {                           \
707
0
            LOG(WARNING) << (warning_prefix) << ": " << _s; \
708
19.7k
        }                                                   \
709
    } while (false);
710
711
326k
#define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix)       \
712
326k
    do {                                                           \
713
326k
        Status _s = (stmt);                                        \
714
0
        if (UNLIKELY(!_s.ok())) {                                  \
715
0
            LOG(WARNING) << (warning_prefix) << ", error: " << _s; \
716
0
            return _s;                                             \
717
326k
        }                                                          \
718
    } while (false);
719
720
template <typename T>
721
using Result = expected<T, Status>;
722
723
using ResultError = unexpected<Status>;
724
725
6.74k
#define RETURN_IF_ERROR_RESULT(stmt)                \
726
6.74k
    do {                                            \
727
6.74k
        Status _status_ = (stmt);                   \
728
24
        if (UNLIKELY(!_status_.ok())) {             \
729
24
            return unexpected(std::move(_status_)); \
730
6.74k
        }                                           \
731
    } while (false)
732
733
144k
#define DORIS_TRY(stmt)                          \
734
144k
    ({                                           \
735
144k
        auto&& res = (stmt);                     \
736
144k
        using T = std::decay_t<decltype(res)>;   \
737
110k
        if (!res.has_value()) [[unlikely]] {     \
738
110k
            return std::forward<T>(res).error(); \
739
144k
        }                                        \
740
34.0k
        std::forward<T>(res).value();            \
741
    });
742
743
} // namespace doris
744
745
// specify formatter for Status
746
template <>
747
struct fmt::formatter<doris::Status> {
748
13
    template <typename ParseContext>
749
13
    constexpr auto parse(ParseContext& ctx) {
750
13
        return ctx.begin();
751
    }
752
753
13
    template <typename FormatContext>
754
13
    auto format(doris::Status const& status, FormatContext& ctx) {
755
13
        return fmt::format_to(ctx.out(), "{}", status.to_string());
756
    }
757
};