Coverage Report

Created: 2025-06-17 14:03

/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(DIRECTORY_NOT_EMPTY, true);              \
51
5
    TStatusError(NOT_IMPLEMENTED_ERROR, false);           \
52
5
    TStatusError(END_OF_FILE, false);                     \
53
5
    TStatusError(INTERNAL_ERROR, true);                   \
54
5
    TStatusError(RUNTIME_ERROR, true);                    \
55
5
    TStatusError(CANCELLED, false);                       \
56
5
    TStatusError(ANALYSIS_ERROR, false);                  \
57
5
    TStatusError(MEM_LIMIT_EXCEEDED, false);              \
58
5
    TStatusError(THRIFT_RPC_ERROR, true);                 \
59
5
    TStatusError(TIMEOUT, true);                          \
60
5
    TStatusError(LIMIT_REACH, false);                     \
61
5
    TStatusError(TOO_MANY_TASKS, true);                   \
62
5
    TStatusError(UNINITIALIZED, false);                   \
63
5
    TStatusError(INCOMPLETE, false);                      \
64
5
    TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \
65
5
    TStatusError(ABORTED, false);                         \
66
5
    TStatusError(DATA_QUALITY_ERROR, false);              \
67
5
    TStatusError(LABEL_ALREADY_EXISTS, true);             \
68
5
    TStatusError(NOT_AUTHORIZED, true);                   \
69
5
    TStatusError(BINLOG_DISABLE, false);                  \
70
5
    TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false);       \
71
5
    TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false);       \
72
5
    TStatusError(BINLOG_NOT_FOUND_DB, false);             \
73
5
    TStatusError(BINLOG_NOT_FOUND_TABLE, false);          \
74
5
    TStatusError(NETWORK_ERROR, false);                   \
75
5
    TStatusError(ILLEGAL_STATE, false);                   \
76
5
    TStatusError(SNAPSHOT_NOT_EXIST, true);               \
77
5
    TStatusError(HTTP_ERROR, true);                       \
78
5
    TStatusError(TABLET_MISSING, true);                   \
79
5
    TStatusError(NOT_MASTER, true);                       \
80
5
    TStatusError(OBTAIN_LOCK_FAILED, false);              \
81
5
    TStatusError(SNAPSHOT_EXPIRED, false);                \
82
5
    TStatusError(DELETE_BITMAP_LOCK_ERROR, false);
83
// E error_name, error_code, print_stacktrace
84
#define APPLY_FOR_OLAP_ERROR_CODES(E)                        \
85
5
    E(OK, 0, false);                                         \
86
5
    E(CALL_SEQUENCE_ERROR, -202, true);                      \
87
5
    E(BUFFER_OVERFLOW, -204, true);                          \
88
5
    E(CONFIG_ERROR, -205, true);                             \
89
5
    E(INIT_FAILED, -206, true);                              \
90
5
    E(INVALID_SCHEMA, -207, true);                           \
91
5
    E(CHECKSUM_ERROR, -208, true);                           \
92
5
    E(SIGNATURE_ERROR, -209, true);                          \
93
5
    E(CATCH_EXCEPTION, -210, true);                          \
94
5
    E(PARSE_PROTOBUF_ERROR, -211, true);                     \
95
5
    E(SERIALIZE_PROTOBUF_ERROR, -212, true);                 \
96
5
    E(WRITE_PROTOBUF_ERROR, -213, true);                     \
97
5
    E(VERSION_NOT_EXIST, -214, false);                       \
98
5
    E(TABLE_NOT_FOUND, -215, true);                          \
99
5
    E(TRY_LOCK_FAILED, -216, false);                         \
100
5
    E(EXCEEDED_LIMIT, -217, false);                          \
101
5
    E(OUT_OF_BOUND, -218, false);                            \
102
5
    E(INVALID_ROOT_PATH, -222, true);                        \
103
5
    E(NO_AVAILABLE_ROOT_PATH, -223, true);                   \
104
5
    E(CHECK_LINES_ERROR, -224, true);                        \
105
5
    E(INVALID_CLUSTER_INFO, -225, true);                     \
106
5
    E(TRANSACTION_NOT_EXIST, -226, false);                   \
107
5
    E(DISK_FAILURE, -227, true);                             \
108
5
    E(TRANSACTION_ALREADY_COMMITTED, -228, false);           \
109
5
    E(TRANSACTION_ALREADY_VISIBLE, -229, false);             \
110
5
    E(VERSION_ALREADY_MERGED, -230, true);                   \
111
5
    E(LZO_DISABLED, -231, true);                             \
112
5
    E(DISK_REACH_CAPACITY_LIMIT, -232, true);                \
113
5
    E(TOO_MANY_TRANSACTIONS, -233, false);                   \
114
5
    E(INVALID_SNAPSHOT_VERSION, -234, true);                 \
115
5
    E(TOO_MANY_VERSION, -235, false);                        \
116
5
    E(NOT_INITIALIZED, -236, true);                          \
117
5
    E(ALREADY_CANCELLED, -237, false);                       \
118
5
    E(TOO_MANY_SEGMENTS, -238, false);                       \
119
5
    E(ALREADY_CLOSED, -239, false);                          \
120
5
    E(SERVICE_UNAVAILABLE, -240, true);                      \
121
5
    E(NEED_SEND_AGAIN, -241, false);                         \
122
5
    E(OS_ERROR, -242, true);                                 \
123
5
    E(DIR_NOT_EXIST, -243, true);                            \
124
5
    E(CREATE_FILE_ERROR, -245, true);                        \
125
5
    E(STL_ERROR, -246, true);                                \
126
5
    E(MUTEX_ERROR, -247, true);                              \
127
5
    E(PTHREAD_ERROR, -248, true);                            \
128
5
    E(UB_FUNC_ERROR, -250, true);                            \
129
5
    E(COMPRESS_ERROR, -251, true);                           \
130
5
    E(DECOMPRESS_ERROR, -252, true);                         \
131
5
    E(FILE_ALREADY_EXIST, -253, true);                       \
132
5
    E(BAD_CAST, -254, true);                                 \
133
5
    E(ARITHMETIC_OVERFLOW_ERRROR, -255, false);              \
134
5
    E(PERMISSION_DENIED, -256, false);                       \
135
5
    E(QUERY_MEMORY_EXCEEDED, -257, false);                   \
136
5
    E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false);          \
137
5
    E(PROCESS_MEMORY_EXCEEDED, -259, false);                 \
138
5
    E(CE_CMD_PARAMS_ERROR, -300, true);                      \
139
5
    E(CE_BUFFER_TOO_SMALL, -301, true);                      \
140
5
    E(CE_CMD_NOT_VALID, -302, true);                         \
141
5
    E(CE_LOAD_TABLE_ERROR, -303, true);                      \
142
5
    E(CE_NOT_FINISHED, -304, true);                          \
143
5
    E(CE_TABLET_ID_EXIST, -305, true);                       \
144
5
    E(TABLE_VERSION_DUPLICATE_ERROR, -400, true);            \
145
5
    E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true);       \
146
5
    E(TABLE_INDEX_VALIDATE_ERROR, -402, true);               \
147
5
    E(TABLE_INDEX_FIND_ERROR, -403, true);                   \
148
5
    E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true);           \
149
5
    E(TABLE_CREATE_META_ERROR, -405, true);                  \
150
5
    E(TABLE_ALREADY_DELETED_ERROR, -406, false);             \
151
5
    E(ENGINE_INSERT_EXISTS_TABLE, -500, true);               \
152
5
    E(ENGINE_DROP_NOEXISTS_TABLE, -501, true);               \
153
5
    E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true);            \
154
5
    E(TABLE_INSERT_DUPLICATION_ERROR, -503, true);           \
155
5
    E(DELETE_VERSION_ERROR, -504, true);                     \
156
5
    E(GC_SCAN_PATH_ERROR, -505, true);                       \
157
5
    E(ENGINE_INSERT_OLD_TABLET, -506, true);                 \
158
5
    E(FETCH_OTHER_ERROR, -600, true);                        \
159
5
    E(FETCH_TABLE_NOT_EXIST, -601, true);                    \
160
5
    E(FETCH_VERSION_ERROR, -602, true);                      \
161
5
    E(FETCH_SCHEMA_ERROR, -603, true);                       \
162
5
    E(FETCH_COMPRESSION_ERROR, -604, true);                  \
163
5
    E(FETCH_CONTEXT_NOT_EXIST, -605, true);                  \
164
5
    E(FETCH_GET_READER_PARAMS_ERR, -606, true);              \
165
5
    E(FETCH_SAVE_SESSION_ERR, -607, true);                   \
166
5
    E(FETCH_MEMORY_EXCEEDED, -608, true);                    \
167
5
    E(READER_IS_UNINITIALIZED, -700, true);                  \
168
5
    E(READER_GET_ITERATOR_ERROR, -701, true);                \
169
5
    E(CAPTURE_ROWSET_READER_ERROR, -702, true);              \
170
5
    E(READER_READING_ERROR, -703, true);                     \
171
5
    E(READER_INITIALIZE_ERROR, -704, true);                  \
172
5
    E(BE_VERSION_NOT_MATCH, -800, true);                     \
173
5
    E(BE_REPLACE_VERSIONS_ERROR, -801, true);                \
174
5
    E(BE_MERGE_ERROR, -802, true);                           \
175
5
    E(CAPTURE_ROWSET_ERROR, -804, true);                     \
176
5
    E(BE_SAVE_HEADER_ERROR, -805, true);                     \
177
5
    E(BE_INIT_OLAP_DATA, -806, true);                        \
178
5
    E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true);              \
179
5
    E(BE_NO_SUITABLE_VERSION, -808, false);                  \
180
5
    E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true);          \
181
5
    E(BE_ERROR_DELETE_ACTION, -811, true);                   \
182
5
    E(BE_SEGMENTS_OVERLAPPING, -812, true);                  \
183
5
    E(PUSH_INIT_ERROR, -900, true);                          \
184
5
    E(PUSH_VERSION_INCORRECT, -902, true);                   \
185
5
    E(PUSH_SCHEMA_MISMATCH, -903, true);                     \
186
5
    E(PUSH_CHECKSUM_ERROR, -904, true);                      \
187
5
    E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true);            \
188
5
    E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true);              \
189
5
    E(PUSH_BUILD_DELTA_ERROR, -907, true);                   \
190
5
    E(PUSH_VERSION_ALREADY_EXIST, -908, false);              \
191
5
    E(PUSH_TABLE_NOT_EXIST, -909, true);                     \
192
5
    E(PUSH_INPUT_DATA_ERROR, -910, true);                    \
193
5
    E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false);          \
194
5
    E(PUSH_BATCH_PROCESS_REMOVED, -912, true);               \
195
5
    E(PUSH_COMMIT_ROWSET, -913, true);                       \
196
5
    E(PUSH_ROWSET_NOT_FOUND, -914, true);                    \
197
5
    E(INDEX_LOAD_ERROR, -1000, true);                        \
198
5
    E(INDEX_CHECKSUM_ERROR, -1002, true);                    \
199
5
    E(INDEX_DELTA_PRUNING, -1003, true);                     \
200
5
    E(DATA_ROW_BLOCK_ERROR, -1100, true);                    \
201
5
    E(DATA_FILE_TYPE_ERROR, -1101, true);                    \
202
5
    E(WRITER_INDEX_WRITE_ERROR, -1200, true);                \
203
5
    E(WRITER_DATA_WRITE_ERROR, -1201, true);                 \
204
5
    E(WRITER_ROW_BLOCK_ERROR, -1202, true);                  \
205
5
    E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true);            \
206
5
    E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true);               \
207
5
    E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true);             \
208
5
    E(HEADER_ADD_VERSION, -1400, true);                      \
209
5
    E(HEADER_DELETE_VERSION, -1401, true);                   \
210
5
    E(HEADER_ADD_PENDING_DELTA, -1402, true);                \
211
5
    E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true);          \
212
5
    E(HEADER_INVALID_FLAG, -1404, true);                     \
213
5
    E(HEADER_LOAD_INVALID_KEY, -1408, true);                 \
214
5
    E(HEADER_LOAD_JSON_HEADER, -1410, true);                 \
215
5
    E(HEADER_INIT_FAILED, -1411, true);                      \
216
5
    E(HEADER_PB_PARSE_FAILED, -1412, true);                  \
217
5
    E(HEADER_HAS_PENDING_DATA, -1413, true);                 \
218
5
    E(SCHEMA_SCHEMA_INVALID, -1500, true);                   \
219
5
    E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true);             \
220
5
    E(ALTER_MULTI_TABLE_ERR, -1600, true);                   \
221
5
    E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true);             \
222
5
    E(ALTER_STATUS_ERR, -1602, true);                        \
223
5
    E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true);     \
224
5
    E(SCHEMA_CHANGE_INFO_INVALID, -1604, true);              \
225
5
    E(QUERY_SPLIT_KEY_ERR, -1605, true);                     \
226
5
    E(DATA_QUALITY_ERR, -1606, false);                       \
227
5
    E(COLUMN_DATA_LOAD_BLOCK, -1700, true);                  \
228
5
    E(COLUMN_DATA_RECORD_INDEX, -1701, true);                \
229
5
    E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true);            \
230
5
    E(COLUMN_DATA_READ_VAR_INT, -1703, true);                \
231
5
    E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true);              \
232
5
    E(COLUMN_READ_STREAM, -1706, true);                      \
233
5
    E(COLUMN_STREAM_NOT_EXIST, -1716, true);                 \
234
5
    E(COLUMN_VALUE_NULL, -1717, true);                       \
235
5
    E(COLUMN_SEEK_ERROR, -1719, true);                       \
236
5
    E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true);            \
237
5
    E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true);             \
238
5
    E(DELETE_INVALID_CONDITION, -1900, true);                \
239
5
    E(DELETE_UPDATE_HEADER_FAILED, -1901, true);             \
240
5
    E(DELETE_SAVE_HEADER_FAILED, -1902, true);               \
241
5
    E(DELETE_INVALID_PARAMETERS, -1903, true);               \
242
5
    E(DELETE_INVALID_VERSION, -1904, true);                  \
243
5
    E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false);         \
244
5
    E(CUMULATIVE_REPEAT_INIT, -2001, true);                  \
245
5
    E(CUMULATIVE_INVALID_PARAMETERS, -2002, true);           \
246
5
    E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true);   \
247
5
    E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \
248
5
    E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true);          \
249
5
    E(CUMULATIVE_MISS_VERSION, -2006, true);                 \
250
5
    E(FULL_NO_SUITABLE_VERSION, -2008, false);               \
251
5
    E(FULL_MISS_VERSION, -2009, true);                       \
252
5
    E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false);         \
253
5
    E(META_INVALID_ARGUMENT, -3000, true);                   \
254
5
    E(META_OPEN_DB_ERROR, -3001, true);                      \
255
5
    E(META_KEY_NOT_FOUND, -3002, false);                     \
256
5
    E(META_GET_ERROR, -3003, true);                          \
257
5
    E(META_PUT_ERROR, -3004, true);                          \
258
5
    E(META_ITERATOR_ERROR, -3005, true);                     \
259
5
    E(META_DELETE_ERROR, -3006, true);                       \
260
5
    E(META_ALREADY_EXIST, -3007, true);                      \
261
5
    E(ROWSET_WRITER_INIT, -3100, true);                      \
262
5
    E(ROWSET_SAVE_FAILED, -3101, true);                      \
263
5
    E(ROWSET_GENERATE_ID_FAILED, -3102, true);               \
264
5
    E(ROWSET_DELETE_FILE_FAILED, -3103, true);               \
265
5
    E(ROWSET_BUILDER_INIT, -3104, true);                     \
266
5
    E(ROWSET_TYPE_NOT_FOUND, -3105, true);                   \
267
5
    E(ROWSET_ALREADY_EXIST, -3106, true);                    \
268
5
    E(ROWSET_CREATE_READER, -3107, true);                    \
269
5
    E(ROWSET_INVALID, -3108, true);                          \
270
5
    E(ROWSET_READER_INIT, -3110, true);                      \
271
5
    E(ROWSET_INVALID_STATE_TRANSITION, -3112, true);         \
272
5
    E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true);           \
273
5
    E(ROWSET_ADD_MIGRATION_V2, -3114, true);                 \
274
5
    E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false);         \
275
5
    E(ROWSET_RENAME_FILE_FAILED, -3116, false);              \
276
5
    E(SEGCOMPACTION_INIT_READER, -3117, false);              \
277
5
    E(SEGCOMPACTION_INIT_WRITER, -3118, false);              \
278
5
    E(SEGCOMPACTION_FAILED, -3119, false);                   \
279
5
    E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true);             \
280
5
    E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true);      \
281
5
    E(INVERTED_INDEX_INVALID_PARAMETERS, -6000, false);      \
282
5
    E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false);           \
283
5
    E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false);           \
284
5
    E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false);          \
285
5
    E(INVERTED_INDEX_BYPASS, -6004, false);                  \
286
5
    E(INVERTED_INDEX_NO_TERMS, -6005, false);                \
287
5
    E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true);       \
288
5
    E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false);        \
289
5
    E(INVERTED_INDEX_BUILD_WAITTING, -6008, false);          \
290
5
    E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false);         \
291
5
    E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false);        \
292
5
    E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false);          \
293
5
    E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false);          \
294
5
    E(KEY_NOT_FOUND, -7000, false);                          \
295
5
    E(KEY_ALREADY_EXISTS, -7001, false);                     \
296
5
    E(ENTRY_NOT_FOUND, -7002, false);                        \
297
5
    E(INVALID_TABLET_STATE, -7211, false);                   \
298
5
    E(ROWSETS_EXPIRED, -7311, false);                        \
299
5
    E(CGROUP_ERROR, -7411, false);                           \
300
5
    E(FATAL_ERROR, -7412, false);
301
302
// Define constexpr int error_code_name = error_code_value
303
#define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE;
304
APPLY_FOR_OLAP_ERROR_CODES(M)
305
#undef M
306
307
#define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name;
308
APPLY_FOR_THRIFT_ERROR_CODES(MM)
309
#undef MM
310
311
constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536;
312
struct ErrorCodeState {
313
    int16_t error_code = 0;
314
    bool stacktrace = true;
315
    std::string description;
316
    size_t count = 0; // Used for count the number of error happens
317
    std::mutex mutex; // lock guard for count state
318
};
319
extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM];
320
321
class ErrorCodeInitializer {
322
public:
323
5
    ErrorCodeInitializer(int temp) : signal_value(temp) {
324
327k
        for (auto& error_state : error_states) {
325
327k
            error_state.error_code = 0;
326
327k
        }
327
5
#define M(NAME, ENABLESTACKTRACE)                                  \
328
215
    error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \
329
215
    error_states[TStatusCode::NAME].description = #NAME;           \
330
215
    error_states[TStatusCode::NAME].error_code = TStatusCode::NAME;
331
215
        APPLY_FOR_THRIFT_ERROR_CODES(M)
332
5
#undef M
333
// In status.h, if error code > 0, then it means it will be used in TStatusCode and will
334
// also be used in FE.
335
// Other error codes that with error code < 0, will only be used in BE.
336
// We use abs(error code) as the index in error_states, so that these two kinds of error
337
// codes MUST not have overlap.
338
// Add an assert here to make sure the code in TStatusCode and other error code are not
339
// overlapped.
340
5
#define M(NAME, ERRORCODE, ENABLESTACKTRACE)                    \
341
1.08k
    assert(error_states[abs(ERRORCODE)].error_code == 0);       \
342
1.08k
    error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \
343
1.08k
    error_states[abs(ERRORCODE)].error_code = ERRORCODE;
344
1.08k
        APPLY_FOR_OLAP_ERROR_CODES(M)
345
5
#undef M
346
5
    }
347
348
5
    void check_init() const {
349
        //the signal value is 0, it means the global error states not inited, it's logical error
350
        // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time.
351
5
        if (signal_value == 0) {
352
0
            exit(-1);
353
0
        }
354
5
    }
355
356
private:
357
    int signal_value = 0;
358
};
359
360
extern ErrorCodeInitializer error_code_init;
361
} // namespace ErrorCode
362
363
class [[nodiscard]] Status {
364
public:
365
379M
    Status() : _code(ErrorCode::OK), _err_msg(nullptr) {}
366
367
    // used to convert Exception to Status
368
69
    Status(int code, std::string msg, std::string stack = "") : _code(code) {
369
69
        _err_msg = std::make_unique<ErrMsg>();
370
69
        _err_msg->_msg = std::move(msg);
371
69
        if (config::enable_stacktrace) {
372
14
            _err_msg->_stack = std::move(stack);
373
14
        }
374
69
    }
375
376
    // copy c'tor makes copy of error detail so Status can be returned by value
377
15.2M
    Status(const Status& rhs) { *this = rhs; }
378
379
    // move c'tor
380
1.75M
    Status(Status&& rhs) noexcept = default;
381
382
    // same as copy c'tor
383
15.2M
    Status& operator=(const Status& rhs) {
384
15.2M
        _code = rhs._code;
385
15.2M
        if (rhs._err_msg) {
386
7.73k
            _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg);
387
15.2M
        } else {
388
            // If rhs error msg is empty, then should also clear current error msg
389
            // For example, if rhs is OK and current status is error, then copy to current
390
            // status, should clear current error message.
391
15.2M
            _err_msg.reset();
392
15.2M
        }
393
15.2M
        return *this;
394
15.2M
    }
395
396
    // move assign
397
7.34M
    Status& operator=(Status&& rhs) noexcept {
398
7.34M
        _code = rhs._code;
399
7.34M
        if (rhs._err_msg) {
400
54.0k
            _err_msg = std::move(rhs._err_msg);
401
7.29M
        } else {
402
7.29M
            _err_msg.reset();
403
7.29M
        }
404
7.34M
        return *this;
405
7.34M
    }
406
407
    template <bool stacktrace = true>
408
134
    Status static create(const TStatus& status) {
409
134
        return Error<stacktrace>(
410
134
                status.status_code,
411
134
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
412
134
    }
_ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE
Line
Count
Source
408
8
    Status static create(const TStatus& status) {
409
8
        return Error<stacktrace>(
410
8
                status.status_code,
411
8
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
412
8
    }
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE
Line
Count
Source
408
126
    Status static create(const TStatus& status) {
409
126
        return Error<stacktrace>(
410
126
                status.status_code,
411
126
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
412
126
    }
413
414
    template <bool stacktrace = true>
415
580
    Status static create(const PStatus& pstatus) {
416
580
        return Error<stacktrace>(
417
580
                pstatus.status_code(),
418
580
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
419
580
    }
_ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE
Line
Count
Source
415
574
    Status static create(const PStatus& pstatus) {
416
574
        return Error<stacktrace>(
417
574
                pstatus.status_code(),
418
574
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
419
574
    }
_ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE
Line
Count
Source
415
6
    Status static create(const PStatus& pstatus) {
416
6
        return Error<stacktrace>(
417
6
                pstatus.status_code(),
418
6
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
419
6
    }
420
421
    template <int code, bool stacktrace = true, typename... Args>
422
397k
    Status static Error(std::string_view msg, Args&&... args) {
423
397k
        Status status;
424
397k
        status._code = code;
425
397k
        status._err_msg = std::make_unique<ErrMsg>();
426
397k
        if constexpr (sizeof...(args) == 0) {
427
324k
            status._err_msg->_msg = msg;
428
324k
        } else {
429
324k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
324k
        }
431
397k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
397k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
24
            status._err_msg->_stack = get_stack_trace(1);
435
24
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
24
        }
437
397k
        return status;
438
397k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
168
    Status static Error(std::string_view msg, Args&&... args) {
423
168
        Status status;
424
168
        status._code = code;
425
168
        status._err_msg = std::make_unique<ErrMsg>();
426
168
        if constexpr (sizeof...(args) == 0) {
427
168
            status._err_msg->_msg = msg;
428
168
        } else {
429
168
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
168
        }
431
168
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
168
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
168
        return status;
438
168
    }
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
422
17
    Status static Error(std::string_view msg, Args&&... args) {
423
17
        Status status;
424
17
        status._code = code;
425
17
        status._err_msg = std::make_unique<ErrMsg>();
426
17
        if constexpr (sizeof...(args) == 0) {
427
17
            status._err_msg->_msg = msg;
428
17
        } else {
429
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
17
        }
431
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
17
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
17
        return status;
438
17
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
2.95k
    Status static Error(std::string_view msg, Args&&... args) {
423
2.95k
        Status status;
424
2.95k
        status._code = code;
425
2.95k
        status._err_msg = std::make_unique<ErrMsg>();
426
2.95k
        if constexpr (sizeof...(args) == 0) {
427
2.95k
            status._err_msg->_msg = msg;
428
2.95k
        } else {
429
2.95k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2.95k
        }
431
2.95k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2.95k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2.95k
        return status;
438
2.95k
    }
_ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
30
    Status static Error(std::string_view msg, Args&&... args) {
423
30
        Status status;
424
30
        status._code = code;
425
30
        status._err_msg = std::make_unique<ErrMsg>();
426
30
        if constexpr (sizeof...(args) == 0) {
427
30
            status._err_msg->_msg = msg;
428
30
        } else {
429
30
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
30
        }
431
30
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
30
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
30
        return status;
438
30
    }
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
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
422
3
    Status static Error(std::string_view msg, Args&&... args) {
423
3
        Status status;
424
3
        status._code = code;
425
3
        status._err_msg = std::make_unique<ErrMsg>();
426
3
        if constexpr (sizeof...(args) == 0) {
427
3
            status._err_msg->_msg = msg;
428
3
        } else {
429
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
3
        }
431
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
3
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
3
        return status;
438
3
    }
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
196
    Status static Error(std::string_view msg, Args&&... args) {
423
196
        Status status;
424
196
        status._code = code;
425
196
        status._err_msg = std::make_unique<ErrMsg>();
426
196
        if constexpr (sizeof...(args) == 0) {
427
196
            status._err_msg->_msg = msg;
428
196
        } else {
429
196
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
196
        }
431
196
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
196
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
3
            status._err_msg->_stack = get_stack_trace(1);
435
3
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
3
        }
437
196
        return status;
438
196
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
6
    Status static Error(std::string_view msg, Args&&... args) {
423
6
        Status status;
424
6
        status._code = code;
425
6
        status._err_msg = std::make_unique<ErrMsg>();
426
6
        if constexpr (sizeof...(args) == 0) {
427
6
            status._err_msg->_msg = msg;
428
6
        } else {
429
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6
        }
431
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6
        return status;
438
6
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
7
    Status static Error(std::string_view msg, Args&&... args) {
423
7
        Status status;
424
7
        status._code = code;
425
7
        status._err_msg = std::make_unique<ErrMsg>();
426
7
        if constexpr (sizeof...(args) == 0) {
427
7
            status._err_msg->_msg = msg;
428
7
        } else {
429
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
7
        }
431
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
7
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
7
        return status;
438
7
    }
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_
_ZN5doris6Status5ErrorILi6ELb1EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
268
    Status static Error(std::string_view msg, Args&&... args) {
423
268
        Status status;
424
268
        status._code = code;
425
268
        status._err_msg = std::make_unique<ErrMsg>();
426
268
        if constexpr (sizeof...(args) == 0) {
427
268
            status._err_msg->_msg = msg;
428
268
        } else {
429
268
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
268
        }
431
268
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
268
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
268
        return status;
438
268
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
21.9k
    Status static Error(std::string_view msg, Args&&... args) {
423
21.9k
        Status status;
424
21.9k
        status._code = code;
425
21.9k
        status._err_msg = std::make_unique<ErrMsg>();
426
21.9k
        if constexpr (sizeof...(args) == 0) {
427
21.9k
            status._err_msg->_msg = msg;
428
21.9k
        } else {
429
21.9k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
21.9k
        }
431
21.9k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
21.9k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
21.9k
        return status;
438
21.9k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
37
    Status static Error(std::string_view msg, Args&&... args) {
423
37
        Status status;
424
37
        status._code = code;
425
37
        status._err_msg = std::make_unique<ErrMsg>();
426
37
        if constexpr (sizeof...(args) == 0) {
427
37
            status._err_msg->_msg = msg;
428
37
        } else {
429
37
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
37
        }
431
37
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
37
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
37
        return status;
438
37
    }
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
422
9
    Status static Error(std::string_view msg, Args&&... args) {
423
9
        Status status;
424
9
        status._code = code;
425
9
        status._err_msg = std::make_unique<ErrMsg>();
426
9
        if constexpr (sizeof...(args) == 0) {
427
9
            status._err_msg->_msg = msg;
428
9
        } else {
429
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
9
        }
431
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
9
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
9
        return status;
438
9
    }
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
13
    Status static Error(std::string_view msg, Args&&... args) {
423
13
        Status status;
424
13
        status._code = code;
425
13
        status._err_msg = std::make_unique<ErrMsg>();
426
13
        if constexpr (sizeof...(args) == 0) {
427
13
            status._err_msg->_msg = msg;
428
13
        } else {
429
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
13
        }
431
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
13
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
13
        return status;
438
13
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
5
    Status static Error(std::string_view msg, Args&&... args) {
423
5
        Status status;
424
5
        status._code = code;
425
5
        status._err_msg = std::make_unique<ErrMsg>();
426
5
        if constexpr (sizeof...(args) == 0) {
427
5
            status._err_msg->_msg = msg;
428
5
        } else {
429
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
5
        }
431
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
5
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
5
            status._err_msg->_stack = get_stack_trace(1);
435
5
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
5
        }
437
5
        return status;
438
5
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
16
    Status static Error(std::string_view msg, Args&&... args) {
423
16
        Status status;
424
16
        status._code = code;
425
16
        status._err_msg = std::make_unique<ErrMsg>();
426
16
        if constexpr (sizeof...(args) == 0) {
427
16
            status._err_msg->_msg = msg;
428
16
        } else {
429
16
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
16
        }
431
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
16
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
16
        return status;
438
16
    }
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
422
4.06k
    Status static Error(std::string_view msg, Args&&... args) {
423
4.06k
        Status status;
424
4.06k
        status._code = code;
425
4.06k
        status._err_msg = std::make_unique<ErrMsg>();
426
4.06k
        if constexpr (sizeof...(args) == 0) {
427
4.06k
            status._err_msg->_msg = msg;
428
4.06k
        } else {
429
4.06k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4.06k
        }
431
4.06k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4.06k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
16
            status._err_msg->_stack = get_stack_trace(1);
435
16
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
16
        }
437
4.06k
        return status;
438
4.06k
    }
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
58
    Status static Error(std::string_view msg, Args&&... args) {
423
58
        Status status;
424
58
        status._code = code;
425
58
        status._err_msg = std::make_unique<ErrMsg>();
426
58
        if constexpr (sizeof...(args) == 0) {
427
58
            status._err_msg->_msg = msg;
428
58
        } else {
429
58
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
58
        }
431
58
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
58
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
58
        return status;
438
58
    }
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
3
    Status static Error(std::string_view msg, Args&&... args) {
423
3
        Status status;
424
3
        status._code = code;
425
3
        status._err_msg = std::make_unique<ErrMsg>();
426
3
        if constexpr (sizeof...(args) == 0) {
427
3
            status._err_msg->_msg = msg;
428
3
        } else {
429
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
3
        }
431
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
3
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
3
        return status;
438
3
    }
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
23.3k
    Status static Error(std::string_view msg, Args&&... args) {
423
23.3k
        Status status;
424
23.3k
        status._code = code;
425
23.3k
        status._err_msg = std::make_unique<ErrMsg>();
426
23.3k
        if constexpr (sizeof...(args) == 0) {
427
22.6k
            status._err_msg->_msg = msg;
428
22.6k
        } else {
429
23.3k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
23.3k
        }
431
23.3k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
23.3k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
23.3k
        return status;
438
23.3k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
422
3
    Status static Error(std::string_view msg, Args&&... args) {
423
3
        Status status;
424
3
        status._code = code;
425
3
        status._err_msg = std::make_unique<ErrMsg>();
426
3
        if constexpr (sizeof...(args) == 0) {
427
3
            status._err_msg->_msg = msg;
428
3
        } else {
429
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
3
        }
431
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
3
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
3
        return status;
438
3
    }
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
422
52.0k
    Status static Error(std::string_view msg, Args&&... args) {
423
52.0k
        Status status;
424
52.0k
        status._code = code;
425
52.0k
        status._err_msg = std::make_unique<ErrMsg>();
426
52.0k
        if constexpr (sizeof...(args) == 0) {
427
52.0k
            status._err_msg->_msg = msg;
428
52.0k
        } else {
429
52.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
52.0k
        }
431
52.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
52.0k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
52.0k
        return status;
438
52.0k
    }
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
422
5
    Status static Error(std::string_view msg, Args&&... args) {
423
5
        Status status;
424
5
        status._code = code;
425
5
        status._err_msg = std::make_unique<ErrMsg>();
426
5
        if constexpr (sizeof...(args) == 0) {
427
5
            status._err_msg->_msg = msg;
428
5
        } else {
429
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
5
        }
431
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
5
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
5
        return status;
438
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
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
422
3
    Status static Error(std::string_view msg, Args&&... args) {
423
3
        Status status;
424
3
        status._code = code;
425
3
        status._err_msg = std::make_unique<ErrMsg>();
426
3
        if constexpr (sizeof...(args) == 0) {
427
3
            status._err_msg->_msg = msg;
428
3
        } else {
429
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
3
        }
431
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
3
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
3
        return status;
438
3
    }
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
422
48
    Status static Error(std::string_view msg, Args&&... args) {
423
48
        Status status;
424
48
        status._code = code;
425
48
        status._err_msg = std::make_unique<ErrMsg>();
426
48
        if constexpr (sizeof...(args) == 0) {
427
48
            status._err_msg->_msg = msg;
428
48
        } else {
429
48
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
48
        }
431
48
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
48
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
48
        return status;
438
48
    }
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
422
9.36k
    Status static Error(std::string_view msg, Args&&... args) {
423
9.36k
        Status status;
424
9.36k
        status._code = code;
425
9.36k
        status._err_msg = std::make_unique<ErrMsg>();
426
9.36k
        if constexpr (sizeof...(args) == 0) {
427
9.36k
            status._err_msg->_msg = msg;
428
9.36k
        } else {
429
9.36k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
9.36k
        }
431
9.36k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
9.36k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
9.36k
        return status;
438
9.36k
    }
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
24
    Status static Error(std::string_view msg, Args&&... args) {
423
24
        Status status;
424
24
        status._code = code;
425
24
        status._err_msg = std::make_unique<ErrMsg>();
426
24
        if constexpr (sizeof...(args) == 0) {
427
24
            status._err_msg->_msg = msg;
428
24
        } else {
429
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
24
        }
431
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
24
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
24
        return status;
438
24
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1.71k
    Status static Error(std::string_view msg, Args&&... args) {
423
1.71k
        Status status;
424
1.71k
        status._code = code;
425
1.71k
        status._err_msg = std::make_unique<ErrMsg>();
426
1.71k
        if constexpr (sizeof...(args) == 0) {
427
1.71k
            status._err_msg->_msg = msg;
428
1.71k
        } else {
429
1.71k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1.71k
        }
431
1.71k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1.71k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1.71k
        return status;
438
1.71k
    }
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
422
12
    Status static Error(std::string_view msg, Args&&... args) {
423
12
        Status status;
424
12
        status._code = code;
425
12
        status._err_msg = std::make_unique<ErrMsg>();
426
12
        if constexpr (sizeof...(args) == 0) {
427
12
            status._err_msg->_msg = msg;
428
12
        } else {
429
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
12
        }
431
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
12
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
12
        return status;
438
12
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
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
422
6.37k
    Status static Error(std::string_view msg, Args&&... args) {
423
6.37k
        Status status;
424
6.37k
        status._code = code;
425
6.37k
        status._err_msg = std::make_unique<ErrMsg>();
426
6.37k
        if constexpr (sizeof...(args) == 0) {
427
6.35k
            status._err_msg->_msg = msg;
428
6.35k
        } else {
429
6.37k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6.37k
        }
431
6.37k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6.37k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6.37k
        return status;
438
6.37k
    }
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
422
6
    Status static Error(std::string_view msg, Args&&... args) {
423
6
        Status status;
424
6
        status._code = code;
425
6
        status._err_msg = std::make_unique<ErrMsg>();
426
6
        if constexpr (sizeof...(args) == 0) {
427
6
            status._err_msg->_msg = msg;
428
6
        } else {
429
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6
        }
431
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6
        return status;
438
6
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
8
    Status static Error(std::string_view msg, Args&&... args) {
423
8
        Status status;
424
8
        status._code = code;
425
8
        status._err_msg = std::make_unique<ErrMsg>();
426
8
        if constexpr (sizeof...(args) == 0) {
427
8
            status._err_msg->_msg = msg;
428
8
        } else {
429
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
8
        }
431
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
8
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
8
        return status;
438
8
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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: _ZN5doris6Status5ErrorILi6ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmRjEEES0_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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
10
    Status static Error(std::string_view msg, Args&&... args) {
423
10
        Status status;
424
10
        status._code = code;
425
10
        status._err_msg = std::make_unique<ErrMsg>();
426
10
        if constexpr (sizeof...(args) == 0) {
427
10
            status._err_msg->_msg = msg;
428
10
        } else {
429
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
10
        }
431
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
10
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
10
        return status;
438
10
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
12
    Status static Error(std::string_view msg, Args&&... args) {
423
12
        Status status;
424
12
        status._code = code;
425
12
        status._err_msg = std::make_unique<ErrMsg>();
426
12
        if constexpr (sizeof...(args) == 0) {
427
12
            status._err_msg->_msg = msg;
428
12
        } else {
429
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
12
        }
431
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
12
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
12
        return status;
438
12
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
6
    Status static Error(std::string_view msg, Args&&... args) {
423
6
        Status status;
424
6
        status._code = code;
425
6
        status._err_msg = std::make_unique<ErrMsg>();
426
6
        if constexpr (sizeof...(args) == 0) {
427
6
            status._err_msg->_msg = msg;
428
6
        } else {
429
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6
        }
431
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6
        return status;
438
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
134k
    Status static Error(std::string_view msg, Args&&... args) {
423
134k
        Status status;
424
134k
        status._code = code;
425
134k
        status._err_msg = std::make_unique<ErrMsg>();
426
134k
        if constexpr (sizeof...(args) == 0) {
427
134k
            status._err_msg->_msg = msg;
428
134k
        } else {
429
134k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
134k
        }
431
134k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
134k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
134k
        return status;
438
134k
    }
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
422
734
    Status static Error(std::string_view msg, Args&&... args) {
423
734
        Status status;
424
734
        status._code = code;
425
734
        status._err_msg = std::make_unique<ErrMsg>();
426
734
        if constexpr (sizeof...(args) == 0) {
427
734
            status._err_msg->_msg = msg;
428
734
        } else {
429
734
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
734
        }
431
734
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
734
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
734
        return status;
438
734
    }
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
422
6.00k
    Status static Error(std::string_view msg, Args&&... args) {
423
6.00k
        Status status;
424
6.00k
        status._code = code;
425
6.00k
        status._err_msg = std::make_unique<ErrMsg>();
426
6.00k
        if constexpr (sizeof...(args) == 0) {
427
6.00k
            status._err_msg->_msg = msg;
428
6.00k
        } else {
429
6.00k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6.00k
        }
431
6.00k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6.00k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6.00k
        return status;
438
6.00k
    }
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
28
    Status static Error(std::string_view msg, Args&&... args) {
423
28
        Status status;
424
28
        status._code = code;
425
28
        status._err_msg = std::make_unique<ErrMsg>();
426
28
        if constexpr (sizeof...(args) == 0) {
427
28
            status._err_msg->_msg = msg;
428
28
        } else {
429
28
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
28
        }
431
28
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
28
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
28
        return status;
438
28
    }
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
798
    Status static Error(std::string_view msg, Args&&... args) {
423
798
        Status status;
424
798
        status._code = code;
425
798
        status._err_msg = std::make_unique<ErrMsg>();
426
798
        if constexpr (sizeof...(args) == 0) {
427
798
            status._err_msg->_msg = msg;
428
798
        } else {
429
798
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
798
        }
431
798
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
798
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
798
        return status;
438
798
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
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
422
11
    Status static Error(std::string_view msg, Args&&... args) {
423
11
        Status status;
424
11
        status._code = code;
425
11
        status._err_msg = std::make_unique<ErrMsg>();
426
11
        if constexpr (sizeof...(args) == 0) {
427
11
            status._err_msg->_msg = msg;
428
11
        } else {
429
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
11
        }
431
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
11
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
11
        return status;
438
11
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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
422
67.2k
    Status static Error(std::string_view msg, Args&&... args) {
423
67.2k
        Status status;
424
67.2k
        status._code = code;
425
67.2k
        status._err_msg = std::make_unique<ErrMsg>();
426
67.2k
        if constexpr (sizeof...(args) == 0) {
427
67.2k
            status._err_msg->_msg = msg;
428
67.2k
        } else {
429
67.2k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
67.2k
        }
431
67.2k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
67.2k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
67.2k
        return status;
438
67.2k
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
17
    Status static Error(std::string_view msg, Args&&... args) {
423
17
        Status status;
424
17
        status._code = code;
425
17
        status._err_msg = std::make_unique<ErrMsg>();
426
17
        if constexpr (sizeof...(args) == 0) {
427
17
            status._err_msg->_msg = msg;
428
17
        } else {
429
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
17
        }
431
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
17
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
17
        return status;
438
17
    }
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
422
621
    Status static Error(std::string_view msg, Args&&... args) {
423
621
        Status status;
424
621
        status._code = code;
425
621
        status._err_msg = std::make_unique<ErrMsg>();
426
621
        if constexpr (sizeof...(args) == 0) {
427
621
            status._err_msg->_msg = msg;
428
621
        } else {
429
621
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
621
        }
431
621
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
621
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
621
        return status;
438
621
    }
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
17
    Status static Error(std::string_view msg, Args&&... args) {
423
17
        Status status;
424
17
        status._code = code;
425
17
        status._err_msg = std::make_unique<ErrMsg>();
426
17
        if constexpr (sizeof...(args) == 0) {
427
17
            status._err_msg->_msg = msg;
428
17
        } else {
429
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
17
        }
431
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
17
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
17
        return status;
438
17
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
6
    Status static Error(std::string_view msg, Args&&... args) {
423
6
        Status status;
424
6
        status._code = code;
425
6
        status._err_msg = std::make_unique<ErrMsg>();
426
6
        if constexpr (sizeof...(args) == 0) {
427
6
            status._err_msg->_msg = msg;
428
6
        } else {
429
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
6
        }
431
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
6
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
6
        return status;
438
6
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
5
    Status static Error(std::string_view msg, Args&&... args) {
423
5
        Status status;
424
5
        status._code = code;
425
5
        status._err_msg = std::make_unique<ErrMsg>();
426
5
        if constexpr (sizeof...(args) == 0) {
427
5
            status._err_msg->_msg = msg;
428
5
        } else {
429
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
5
        }
431
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
5
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
5
        return status;
438
5
    }
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
21.1k
    Status static Error(std::string_view msg, Args&&... args) {
423
21.1k
        Status status;
424
21.1k
        status._code = code;
425
21.1k
        status._err_msg = std::make_unique<ErrMsg>();
426
21.1k
        if constexpr (sizeof...(args) == 0) {
427
21.1k
            status._err_msg->_msg = msg;
428
21.1k
        } else {
429
21.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
21.1k
        }
431
21.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
21.1k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
21.1k
        return status;
438
21.1k
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
850
    Status static Error(std::string_view msg, Args&&... args) {
423
850
        Status status;
424
850
        status._code = code;
425
850
        status._err_msg = std::make_unique<ErrMsg>();
426
850
        if constexpr (sizeof...(args) == 0) {
427
850
            status._err_msg->_msg = msg;
428
850
        } else {
429
850
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
850
        }
431
850
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
850
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
850
        return status;
438
850
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
3.62k
    Status static Error(std::string_view msg, Args&&... args) {
423
3.62k
        Status status;
424
3.62k
        status._code = code;
425
3.62k
        status._err_msg = std::make_unique<ErrMsg>();
426
3.62k
        if constexpr (sizeof...(args) == 0) {
427
3.62k
            status._err_msg->_msg = msg;
428
3.62k
        } else {
429
3.62k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
3.62k
        }
431
3.62k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
3.62k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
3.62k
        return status;
438
3.62k
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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
422
27
    Status static Error(std::string_view msg, Args&&... args) {
423
27
        Status status;
424
27
        status._code = code;
425
27
        status._err_msg = std::make_unique<ErrMsg>();
426
27
        if constexpr (sizeof...(args) == 0) {
427
27
            status._err_msg->_msg = msg;
428
27
        } else {
429
27
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
27
        }
431
27
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
27
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
27
        return status;
438
27
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
21.8k
    Status static Error(std::string_view msg, Args&&... args) {
423
21.8k
        Status status;
424
21.8k
        status._code = code;
425
21.8k
        status._err_msg = std::make_unique<ErrMsg>();
426
21.8k
        if constexpr (sizeof...(args) == 0) {
427
21.8k
            status._err_msg->_msg = msg;
428
21.8k
        } else {
429
21.8k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
21.8k
        }
431
21.8k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
21.8k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
21.8k
        return status;
438
21.8k
    }
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
12.0k
    Status static Error(std::string_view msg, Args&&... args) {
423
12.0k
        Status status;
424
12.0k
        status._code = code;
425
12.0k
        status._err_msg = std::make_unique<ErrMsg>();
426
12.0k
        if constexpr (sizeof...(args) == 0) {
427
12.0k
            status._err_msg->_msg = msg;
428
12.0k
        } else {
429
12.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
12.0k
        }
431
12.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
12.0k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
12.0k
        return status;
438
12.0k
    }
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
785
    Status static Error(std::string_view msg, Args&&... args) {
423
785
        Status status;
424
785
        status._code = code;
425
785
        status._err_msg = std::make_unique<ErrMsg>();
426
785
        if constexpr (sizeof...(args) == 0) {
427
785
            status._err_msg->_msg = msg;
428
785
        } else {
429
785
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
785
        }
431
785
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
785
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
785
        return status;
438
785
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
4.49k
    Status static Error(std::string_view msg, Args&&... args) {
423
4.49k
        Status status;
424
4.49k
        status._code = code;
425
4.49k
        status._err_msg = std::make_unique<ErrMsg>();
426
4.49k
        if constexpr (sizeof...(args) == 0) {
427
4.49k
            status._err_msg->_msg = msg;
428
4.49k
        } else {
429
4.49k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4.49k
        }
431
4.49k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4.49k
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4.49k
        return status;
438
4.49k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
48
    Status static Error(std::string_view msg, Args&&... args) {
423
48
        Status status;
424
48
        status._code = code;
425
48
        status._err_msg = std::make_unique<ErrMsg>();
426
48
        if constexpr (sizeof...(args) == 0) {
427
48
            status._err_msg->_msg = msg;
428
48
        } else {
429
48
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
48
        }
431
48
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
48
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
48
        return status;
438
48
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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: _ZN5doris6Status5ErrorILi6ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
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
422
9
    Status static Error(std::string_view msg, Args&&... args) {
423
9
        Status status;
424
9
        status._code = code;
425
9
        status._err_msg = std::make_unique<ErrMsg>();
426
9
        if constexpr (sizeof...(args) == 0) {
427
9
            status._err_msg->_msg = msg;
428
9
        } else {
429
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
9
        }
431
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
9
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
9
        return status;
438
9
    }
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
422
10
    Status static Error(std::string_view msg, Args&&... args) {
423
10
        Status status;
424
10
        status._code = code;
425
10
        status._err_msg = std::make_unique<ErrMsg>();
426
10
        if constexpr (sizeof...(args) == 0) {
427
10
            status._err_msg->_msg = msg;
428
10
        } else {
429
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
10
        }
431
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
10
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
10
        return status;
438
10
    }
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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_
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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_
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
422
2
    Status static Error(std::string_view msg, Args&&... args) {
423
2
        Status status;
424
2
        status._code = code;
425
2
        status._err_msg = std::make_unique<ErrMsg>();
426
2
        if constexpr (sizeof...(args) == 0) {
427
2
            status._err_msg->_msg = msg;
428
2
        } else {
429
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
2
        }
431
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
2
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
2
        return status;
438
2
    }
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
422
4
    Status static Error(std::string_view msg, Args&&... args) {
423
4
        Status status;
424
4
        status._code = code;
425
4
        status._err_msg = std::make_unique<ErrMsg>();
426
4
        if constexpr (sizeof...(args) == 0) {
427
4
            status._err_msg->_msg = msg;
428
4
        } else {
429
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
4
        }
431
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
4
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
4
        return status;
438
4
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
422
354
    Status static Error(std::string_view msg, Args&&... args) {
423
354
        Status status;
424
354
        status._code = code;
425
354
        status._err_msg = std::make_unique<ErrMsg>();
426
354
        if constexpr (sizeof...(args) == 0) {
427
354
            status._err_msg->_msg = msg;
428
354
        } else {
429
354
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
354
        }
431
354
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
354
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
354
        return status;
438
354
    }
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
422
1
    Status static Error(std::string_view msg, Args&&... args) {
423
1
        Status status;
424
1
        status._code = code;
425
1
        status._err_msg = std::make_unique<ErrMsg>();
426
1
        if constexpr (sizeof...(args) == 0) {
427
1
            status._err_msg->_msg = msg;
428
1
        } else {
429
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
430
1
        }
431
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
432
1
            config::enable_stacktrace) {
433
            // Delete the first one frame pointers, which are inside the status.h
434
0
            status._err_msg->_stack = get_stack_trace(1);
435
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
436
0
        }
437
1
        return status;
438
1
    }
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_
439
440
    template <bool stacktrace = true, typename... Args>
441
24.0k
    Status static Error(int code, std::string_view msg, Args&&... args) {
442
24.0k
        Status status;
443
24.0k
        status._code = code;
444
24.0k
        status._err_msg = std::make_unique<ErrMsg>();
445
24.0k
        if constexpr (sizeof...(args) == 0) {
446
0
            status._err_msg->_msg = msg;
447
0
        } else {
448
0
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
449
0
        }
450
24.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
451
24.0k
            config::enable_stacktrace) {
452
0
            status._err_msg->_stack = get_stack_trace(1);
453
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
454
0
        }
455
24.0k
        return status;
456
24.0k
    }
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
441
590
    Status static Error(int code, std::string_view msg, Args&&... args) {
442
590
        Status status;
443
590
        status._code = code;
444
590
        status._err_msg = std::make_unique<ErrMsg>();
445
590
        if constexpr (sizeof...(args) == 0) {
446
590
            status._err_msg->_msg = msg;
447
590
        } else {
448
590
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
449
590
        }
450
592
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
451
590
            config::enable_stacktrace) {
452
0
            status._err_msg->_stack = get_stack_trace(1);
453
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
454
0
        }
455
590
        return status;
456
590
    }
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
441
23.4k
    Status static Error(int code, std::string_view msg, Args&&... args) {
442
23.4k
        Status status;
443
23.4k
        status._code = code;
444
23.4k
        status._err_msg = std::make_unique<ErrMsg>();
445
23.4k
        if constexpr (sizeof...(args) == 0) {
446
22.9k
            status._err_msg->_msg = msg;
447
22.9k
        } else {
448
23.4k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
449
23.4k
        }
450
23.4k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
451
23.4k
            config::enable_stacktrace) {
452
0
            status._err_msg->_stack = get_stack_trace(1);
453
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
454
0
        }
455
23.4k
        return status;
456
23.4k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
457
458
375M
    static Status OK() { return {}; }
459
460
    template <bool stacktrace = true, typename... Args>
461
0
    static Status FatalError(std::string_view msg, Args&&... args) {
462
0
#ifndef NDEBUG
463
0
        LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...);
464
0
#endif
465
0
        return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...);
466
0
    }
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_
467
468
// default have stacktrace. could disable manually.
469
#define ERROR_CTOR(name, code)                                                       \
470
    template <bool stacktrace = true, typename... Args>                              \
471
187k
    static Status name(std::string_view msg, Args&&... args) {                       \
472
187k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
187k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
17
    static Status name(std::string_view msg, Args&&... args) {                       \
472
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
17
    }
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
2
    static Status name(std::string_view msg, Args&&... args) {                       \
472
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
2
    }
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
471
3
    static Status name(std::string_view msg, Args&&... args) {                       \
472
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
3
    }
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
195
    static Status name(std::string_view msg, Args&&... args) {                       \
472
195
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
195
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
268
    static Status name(std::string_view msg, Args&&... args) {                       \
472
268
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
268
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKiEEES0_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
471
9
    static Status name(std::string_view msg, Args&&... args) {                       \
472
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
9
    }
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
471
4
    static Status name(std::string_view msg, Args&&... args) {                       \
472
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
4
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
471
13
    static Status name(std::string_view msg, Args&&... args) {                       \
472
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
13
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
2
    static Status name(std::string_view msg, Args&&... args) {                       \
472
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
2
    }
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
5
    static Status name(std::string_view msg, Args&&... args) {                       \
472
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
5
    }
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
471
16
    static Status name(std::string_view msg, Args&&... args) {                       \
472
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
16
    }
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
471
17
    static Status name(std::string_view msg, Args&&... args) {                       \
472
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
17
    }
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
471
52.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
472
52.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
52.0k
    }
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
471
57
    static Status name(std::string_view msg, Args&&... args) {                       \
472
57
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
57
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
471
3
    static Status name(std::string_view msg, Args&&... args) {                       \
472
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
3
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
6
    static Status name(std::string_view msg, Args&&... args) {                       \
472
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
6
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
12
    static Status name(std::string_view msg, Args&&... args) {                       \
472
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
12
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
6
    static Status name(std::string_view msg, Args&&... args) {                       \
472
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
6
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
134k
    static Status name(std::string_view msg, Args&&... args) {                       \
472
134k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
134k
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
17
    static Status name(std::string_view msg, Args&&... args) {                       \
472
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
17
    }
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
471
4
    static Status name(std::string_view msg, Args&&... args) {                       \
472
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
4
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
621
    static Status name(std::string_view msg, Args&&... args) {                       \
472
621
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
621
    }
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
471
2
    static Status name(std::string_view msg, Args&&... args) {                       \
472
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
2
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
5
    static Status name(std::string_view msg, Args&&... args) {                       \
472
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
5
    }
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
27
    static Status name(std::string_view msg, Args&&... args) {                       \
472
27
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
27
    }
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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_
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN5arrow4Type4typeEEEES0_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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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: _ZN5doris6Status13InternalErrorILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
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
471
10
    static Status name(std::string_view msg, Args&&... args) {                       \
472
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
10
    }
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
471
4
    static Status name(std::string_view msg, Args&&... args) {                       \
472
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
4
    }
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
471
2
    static Status name(std::string_view msg, Args&&... args) {                       \
472
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
2
    }
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
471
4
    static Status name(std::string_view msg, Args&&... args) {                       \
472
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
4
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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
471
1
    static Status name(std::string_view msg, Args&&... args) {                       \
472
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
473
1
    }
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_
474
475
// default have no stacktrace. could enable manually.
476
#define ERROR_CTOR_NOSTACK(name, code)                                               \
477
    template <bool stacktrace = false, typename... Args>                             \
478
159k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
159k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
159k
    }
_ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
168
    static Status name(std::string_view msg, Args&&... args) {                       \
479
168
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
168
    }
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
7
    static Status name(std::string_view msg, Args&&... args) {                       \
479
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
7
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
478
21.9k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
21.9k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
21.9k
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
37
    static Status name(std::string_view msg, Args&&... args) {                       \
479
37
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
37
    }
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
478
5
    static Status name(std::string_view msg, Args&&... args) {                       \
479
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
5
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
9.36k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
9.36k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
9.36k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
478
4
    static Status name(std::string_view msg, Args&&... args) {                       \
479
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
4
    }
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
478
2
    static Status name(std::string_view msg, Args&&... args) {                       \
479
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
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
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
4
    static Status name(std::string_view msg, Args&&... args) {                       \
479
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
4
    }
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
67.2k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
67.2k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
67.2k
    }
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
478
6
    static Status name(std::string_view msg, Args&&... args) {                       \
479
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
6
    }
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
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
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
478
21.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
21.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
21.1k
    }
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
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
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: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
21.8k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
21.8k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
21.8k
    }
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
12.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
12.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
12.0k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
785
    static Status name(std::string_view msg, Args&&... args) {                       \
479
785
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
785
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
4.49k
    static Status name(std::string_view msg, Args&&... args) {                       \
479
4.49k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
4.49k
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
478
48
    static Status name(std::string_view msg, Args&&... args) {                       \
479
48
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
48
    }
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
478
9
    static Status name(std::string_view msg, Args&&... args) {                       \
479
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
9
    }
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_
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
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_
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
478
354
    static Status name(std::string_view msg, Args&&... args) {                       \
479
354
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
354
    }
_ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
478
1
    static Status name(std::string_view msg, Args&&... args) {                       \
479
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
480
1
    }
481
482
    ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT)
483
    ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED)
484
    ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED)
485
    ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT)
486
    ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH)
487
    ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE)
488
    ERROR_CTOR(Corruption, CORRUPTION)
489
    ERROR_CTOR(IOError, IO_ERROR)
490
    ERROR_CTOR(NotFound, NOT_FOUND)
491
    ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST)
492
    ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY)
493
    ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR)
494
    ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE)
495
    ERROR_CTOR(InternalError, INTERNAL_ERROR)
496
    ERROR_CTOR(RuntimeError, RUNTIME_ERROR)
497
    ERROR_CTOR_NOSTACK(Cancelled, CANCELLED)
498
    ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED)
499
    ERROR_CTOR(RpcError, THRIFT_RPC_ERROR)
500
    ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT)
501
    ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS)
502
    ERROR_CTOR(Uninitialized, UNINITIALIZED)
503
    ERROR_CTOR(Aborted, ABORTED)
504
    ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR)
505
    ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED)
506
    ERROR_CTOR(HttpError, HTTP_ERROR)
507
    ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN)
508
    ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR)
509
    ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED)
510
    ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR)
511
#undef ERROR_CTOR
512
513
    template <int code>
514
1.04M
    bool is() const {
515
1.04M
        return code == _code;
516
1.04M
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv
_ZNK5doris6Status2isILin3115EEEbv
Line
Count
Source
514
2
    bool is() const {
515
2
        return code == _code;
516
2
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv
_ZNK5doris6Status2isILi31EEEbv
Line
Count
Source
514
28
    bool is() const {
515
28
        return code == _code;
516
28
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi35EEEbv
_ZNK5doris6Status2isILin7000EEEbv
Line
Count
Source
514
5
    bool is() const {
515
5
        return code == _code;
516
5
    }
_ZNK5doris6Status2isILin7001EEEbv
Line
Count
Source
514
4
    bool is() const {
515
4
        return code == _code;
516
4
    }
_ZNK5doris6Status2isILi5EEEbv
Line
Count
Source
514
5.85k
    bool is() const {
515
5.85k
        return code == _code;
516
5.85k
    }
_ZNK5doris6Status2isILin3002EEEbv
Line
Count
Source
514
24.2k
    bool is() const {
515
24.2k
        return code == _code;
516
24.2k
    }
_ZNK5doris6Status2isILi34EEEbv
Line
Count
Source
514
2
    bool is() const {
515
2
        return code == _code;
516
2
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin406EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv
_ZNK5doris6Status2isILi6EEEbv
Line
Count
Source
514
4
    bool is() const {
515
4
        return code == _code;
516
4
    }
_ZNK5doris6Status2isILin908EEEbv
Line
Count
Source
514
734
    bool is() const {
515
734
        return code == _code;
516
734
    }
_ZNK5doris6Status2isILin7002EEEbv
Line
Count
Source
514
8.63k
    bool is() const {
515
8.63k
        return code == _code;
516
8.63k
    }
_ZNK5doris6Status2isILi30EEEbv
Line
Count
Source
514
823k
    bool is() const {
515
823k
        return code == _code;
516
823k
    }
_ZNK5doris6Status2isILin2000EEEbv
Line
Count
Source
514
6.03k
    bool is() const {
515
6.03k
        return code == _code;
516
6.03k
    }
_ZNK5doris6Status2isILi32EEEbv
Line
Count
Source
514
31.7k
    bool is() const {
515
31.7k
        return code == _code;
516
31.7k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin6004EEEbv
_ZNK5doris6Status2isILi39EEEbv
Line
Count
Source
514
134k
    bool is() const {
515
134k
        return code == _code;
516
134k
    }
_ZNK5doris6Status2isILin2010EEEbv
Line
Count
Source
514
6.06k
    bool is() const {
515
6.06k
        return code == _code;
516
6.06k
    }
_ZNK5doris6Status2isILin808EEEbv
Line
Count
Source
514
798
    bool is() const {
515
798
        return code == _code;
516
798
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv
_ZNK5doris6Status2isILin6003EEEbv
Line
Count
Source
514
17
    bool is() const {
515
17
        return code == _code;
516
17
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi14EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi46EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv
_ZNK5doris6Status2isILi11EEEbv
Line
Count
Source
514
15
    bool is() const {
515
15
        return code == _code;
516
15
    }
_ZNK5doris6Status2isILin257EEEbv
Line
Count
Source
514
262
    bool is() const {
515
262
        return code == _code;
516
262
    }
_ZNK5doris6Status2isILin258EEEbv
Line
Count
Source
514
180
    bool is() const {
515
180
        return code == _code;
516
180
    }
_ZNK5doris6Status2isILi42EEEbv
Line
Count
Source
514
621
    bool is() const {
515
621
        return code == _code;
516
621
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv
_ZNK5doris6Status2isILin259EEEbv
Line
Count
Source
514
2.95k
    bool is() const {
515
2.95k
        return code == _code;
516
2.95k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi73EEEbv
_ZNK5doris6Status2isILi8EEEbv
Line
Count
Source
514
8
    bool is() const {
515
8
        return code == _code;
516
8
    }
_ZNK5doris6Status2isILi37EEEbv
Line
Count
Source
514
8
    bool is() const {
515
8
        return code == _code;
516
8
    }
_ZNK5doris6Status2isILi9EEEbv
Line
Count
Source
514
8
    bool is() const {
515
8
        return code == _code;
516
8
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin7311EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv
517
518
0
    void set_code(int code) { _code = code; }
519
520
382M
    bool ok() const { return _code == ErrorCode::OK; }
521
522
    // Convert into TStatus.
523
    void to_thrift(TStatus* status) const;
524
    TStatus to_thrift() const;
525
    void to_protobuf(PStatus* status) const;
526
527
    std::string to_string() const;
528
    std::string to_string_no_stack() const;
529
530
    /// @return A json representation of this status.
531
    std::string to_json() const;
532
533
29.1k
    int code() const { return _code; }
534
535
    /// Clone this status and add the specified prefix to the message.
536
    ///
537
    /// If this status is OK, then an OK status will be returned.
538
    ///
539
    /// @param [in] msg
540
    ///   The message to prepend.
541
    /// @return A ref to Status object
542
    Status& prepend(std::string_view msg);
543
544
    /// Add the specified suffix to the message.
545
    ///
546
    /// If this status is OK, then an OK status will be returned.
547
    ///
548
    /// @param [in] msg
549
    ///   The message to append.
550
    /// @return A ref to Status object
551
    Status& append(std::string_view msg);
552
553
    // if(!status) or if (status) will use this operator
554
86.5M
    operator bool() const { return this->ok(); }
555
556
    // Used like if ASSERT_EQ(res, Status::OK())
557
    // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state
558
    // ignore error messages during comparison
559
975k
    bool operator==(const Status& st) const { return _code == st._code; }
560
561
    // Used like if ASSERT_NE(res, Status::OK())
562
1.23M
    bool operator!=(const Status& st) const { return _code != st._code; }
563
564
    friend std::ostream& operator<<(std::ostream& ostr, const Status& status);
565
566
36.0k
    std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); }
567
568
0
    std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; }
569
570
    friend io::ObjectStorageStatus convert_to_obj_response(Status st);
571
572
private:
573
    int _code;
574
    struct ErrMsg {
575
        std::string _msg;
576
        std::string _stack;
577
    };
578
    std::unique_ptr<ErrMsg> _err_msg;
579
580
13.2k
    std::string code_as_string() const {
581
13.2k
        return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code))
582
13.2k
                               : fmt::format("E{}", (int16_t)_code);
583
13.2k
    }
584
};
585
586
// There are many thread using status to indicate the cancel state, one thread may update it and
587
// the other thread will read it. Status is not thread safe, for example, if one thread is update it
588
// and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and
589
// it is deconstructed during copy method.
590
// And also we could not use lock, because we need get status frequently to check if it is cancelled.
591
// The default value is ok.
592
class AtomicStatus {
593
public:
594
1.39M
    AtomicStatus() : error_st_(Status::OK()) {}
595
596
3.62M
    bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; }
597
598
364
    bool update(const Status& new_status) {
599
        // If new status is normal, or the old status is abnormal, then not need update
600
364
        if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) {
601
315
            return false;
602
315
        }
603
49
        std::lock_guard l(mutex_);
604
49
        if (error_code_.load(std::memory_order_acquire) != 0) {
605
0
            return false;
606
0
        }
607
49
        error_st_ = new_status;
608
49
        error_code_.store(new_status.code(), std::memory_order_release);
609
49
        return true;
610
49
    }
611
612
8
    void reset() {
613
8
        std::lock_guard l(mutex_);
614
8
        error_st_ = Status::OK();
615
8
        error_code_ = 0;
616
8
    }
617
618
    // will copy a new status object to avoid concurrency
619
    // This stauts could only be called when ok==false
620
4.78k
    Status status() const {
621
4.78k
        std::lock_guard l(mutex_);
622
4.78k
        return error_st_;
623
4.78k
    }
624
625
    AtomicStatus(const AtomicStatus&) = delete;
626
    void operator=(const AtomicStatus&) = delete;
627
628
private:
629
    std::atomic_int16_t error_code_ = 0;
630
    Status error_st_;
631
    // mutex's lock is not a const method, but we will use this mutex in
632
    // some const method, so that it should be mutable.
633
    mutable std::mutex mutex_;
634
};
635
636
13.0k
inline std::ostream& operator<<(std::ostream& ostr, const Status& status) {
637
13.0k
    ostr << '[' << status.code_as_string() << ']';
638
13.0k
    ostr << status.msg();
639
13.0k
    if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) {
640
45
        ostr << '\n' << status._err_msg->_stack;
641
45
    }
642
13.0k
    return ostr;
643
13.0k
}
644
645
12.9k
inline std::string Status::to_string() const {
646
12.9k
    std::stringstream ss;
647
12.9k
    ss << *this;
648
12.9k
    return ss.str();
649
12.9k
}
650
651
0
inline std::string Status::to_string_no_stack() const {
652
0
    return fmt::format("[{}]{}", code_as_string(), msg());
653
0
}
654
655
// some generally useful macros
656
#define RETURN_IF_ERROR(stmt)           \
657
262M
    do {                                \
658
262M
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv
Line
Count
Source
658
6
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEENK3$_0clEv
Line
Count
Source
658
9.84k
        Status _status_ = (stmt);       \
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv
Line
Count
Source
658
619
        Status _status_ = (stmt);       \
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
658
6.01k
        Status _status_ = (stmt);       \
Unexecuted instantiation: group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEv
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEvENKUlvE_clEv
load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv
Line
Count
Source
658
40
        Status _status_ = (stmt);       \
Unexecuted instantiation: load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv
Line
Count
Source
658
4
        Status _status_ = (stmt);       \
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv
Line
Count
Source
658
47
        Status _status_ = (stmt);       \
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
658
2
        Status _status_ = (stmt);       \
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
658
2
        Status _status_ = (stmt);       \
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorEEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE
Line
Count
Source
658
2
        Status _status_ = (stmt);       \
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
658
916
        Status _status_ = (stmt);       \
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
658
2
        Status _status_ = (stmt);       \
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
658
334
        Status _status_ = (stmt);       \
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24read_one_line_from_rangeERKNS_14TFileRangeDescEjPNS0_5BlockERKNS_23ExternalFileMappingInfoEPlSA_ENK3$_1clEv
Line
Count
Source
658
24
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_
Line
Count
Source
658
29
        Status _status_ = (stmt);       \
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
658
64
        Status _status_ = (stmt);       \
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
658
73
        Status _status_ = (stmt);       \
async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv
Line
Count
Source
658
6
        Status _status_ = (stmt);       \
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_
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_
Line
Count
Source
658
790
        Status _status_ = (stmt);       \
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_
Line
Count
Source
658
140
        Status _status_ = (stmt);       \
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
658
7.23k
        Status _status_ = (stmt);       \
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_
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_
Line
Count
Source
658
200
        Status _status_ = (stmt);       \
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_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: schema_view_dependency_scanner.cpp:_ZZN5doris27SchemaViewDependencyScanner34_get_view_dependency_block_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
658
3
        Status _status_ = (stmt);       \
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
658
15
        Status _status_ = (stmt);       \
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
658
3
        Status _status_ = (stmt);       \
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_
Line
Count
Source
658
3
        Status _status_ = (stmt);       \
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
658
9
        Status _status_ = (stmt);       \
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
658
3
        Status _status_ = (stmt);       \
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
658
3
        Status _status_ = (stmt);       \
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
658
9
        Status _status_ = (stmt);       \
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
658
3
        Status _status_ = (stmt);       \
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_
Line
Count
Source
658
3
        Status _status_ = (stmt);       \
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
658
6
        Status _status_ = (stmt);       \
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
658
6
        Status _status_ = (stmt);       \
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
658
3
        Status _status_ = (stmt);       \
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
658
154
        Status _status_ = (stmt);       \
task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv
Line
Count
Source
658
672
        Status _status_ = (stmt);       \
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
659
262M
        if (UNLIKELY(!_status_.ok())) { \
660
31.9k
            return _status_;            \
661
31.9k
        }                               \
662
262M
    } while (false)
663
664
#define PROPAGATE_FALSE(stmt)                     \
665
112k
    do {                                          \
666
112k
        if (UNLIKELY(!static_cast<bool>(stmt))) { \
667
573
            return false;                         \
668
573
        }                                         \
669
112k
    } while (false)
670
671
#define THROW_IF_ERROR(stmt)            \
672
1.21M
    do {                                \
673
1.21M
        Status _status_ = (stmt);       \
674
1.21M
        if (UNLIKELY(!_status_.ok())) { \
675
1
            throw Exception(_status_);  \
676
1
        }                               \
677
1.21M
    } while (false)
678
679
#define RETURN_IF_STATUS_ERROR(status, stmt) \
680
    do {                                     \
681
        status = (stmt);                     \
682
        if (UNLIKELY(!status.ok())) {        \
683
            return;                          \
684
        }                                    \
685
    } while (false)
686
687
#define EXIT_IF_ERROR(stmt)             \
688
4
    do {                                \
689
4
        Status _status_ = (stmt);       \
690
4
        if (UNLIKELY(!_status_.ok())) { \
691
0
            LOG(ERROR) << _status_;     \
692
0
            exit(1);                    \
693
0
        }                               \
694
4
    } while (false)
695
696
#define RETURN_FALSE_IF_ERROR(stmt)   \
697
63.4k
    do {                              \
698
63.4k
        Status status = (stmt);       \
699
63.4k
        if (UNLIKELY(!status.ok())) { \
700
1
            return false;             \
701
1
        }                             \
702
63.4k
    } while (false)
703
704
/// @brief Emit a warning if @c to_call returns a bad status.
705
#define WARN_IF_ERROR(to_call, warning_prefix)              \
706
11.9k
    do {                                                    \
707
11.9k
        Status _s = (to_call);                              \
708
11.9k
        if (UNLIKELY(!_s.ok())) {                           \
709
0
            LOG(WARNING) << (warning_prefix) << ": " << _s; \
710
0
        }                                                   \
711
11.9k
    } while (false);
712
713
#define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix)       \
714
613k
    do {                                                           \
715
613k
        Status _s = (stmt);                                        \
716
613k
        if (UNLIKELY(!_s.ok())) {                                  \
717
0
            LOG(WARNING) << (warning_prefix) << ", error: " << _s; \
718
0
            return _s;                                             \
719
0
        }                                                          \
720
613k
    } while (false);
721
722
template <typename T>
723
using Result = expected<T, Status>;
724
725
using ResultError = unexpected<Status>;
726
727
#define RETURN_IF_ERROR_RESULT(stmt)                \
728
1.17k
    do {                                            \
729
1.17k
        Status _status_ = (stmt);                   \
730
1.17k
        if (UNLIKELY(!_status_.ok())) {             \
731
24
            return unexpected(std::move(_status_)); \
732
24
        }                                           \
733
1.17k
    } while (false)
734
735
#define DORIS_TRY(stmt)                          \
736
162k
    ({                                           \
737
162k
        auto&& res = (stmt);                     \
738
162k
        using T = std::decay_t<decltype(res)>;   \
739
162k
        if (!res.has_value()) [[unlikely]] {     \
740
134k
            return std::forward<T>(res).error(); \
741
134k
        }                                        \
742
162k
        std::forward<T>(res).value();            \
743
28.6k
    });
744
745
} // namespace doris
746
747
// specify formatter for Status
748
template <>
749
struct fmt::formatter<doris::Status> {
750
    template <typename ParseContext>
751
13
    constexpr auto parse(ParseContext& ctx) {
752
13
        return ctx.begin();
753
13
    }
754
755
    template <typename FormatContext>
756
13
    auto format(doris::Status const& status, FormatContext& ctx) {
757
13
        return fmt::format_to(ctx.out(), "{}", status.to_string());
758
13
    }
759
};