Coverage Report

Created: 2026-03-13 10:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/common/status.h
Line
Count
Source
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 <type_traits>
18
#include <utility>
19
20
#include "common/compiler_util.h" // IWYU pragma: keep
21
#include "common/config.h"
22
#include "common/expected.h"
23
#include "util/stack_util.h"
24
25
namespace doris {
26
27
namespace io {
28
struct ObjectStorageStatus;
29
}
30
31
class Status;
32
33
extern io::ObjectStorageStatus convert_to_obj_response(Status st);
34
35
class PStatus;
36
37
namespace ErrorCode {
38
39
// E thrift_error_name, print_stacktrace
40
9
#define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError)        \
41
9
    TStatusError(PUBLISH_TIMEOUT, false);                 \
42
9
    TStatusError(MEM_ALLOC_FAILED, true);                 \
43
9
    TStatusError(BUFFER_ALLOCATION_FAILED, true);         \
44
9
    TStatusError(INVALID_ARGUMENT, false);                \
45
9
    TStatusError(INVALID_JSON_PATH, false);               \
46
9
    TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true);  \
47
9
    TStatusError(CORRUPTION, true);                       \
48
9
    TStatusError(IO_ERROR, true);                         \
49
9
    TStatusError(NOT_FOUND, true);                        \
50
9
    TStatusError(ALREADY_EXIST, true);                    \
51
9
    TStatusError(DIRECTORY_NOT_EMPTY, true);              \
52
9
    TStatusError(NOT_IMPLEMENTED_ERROR, false);           \
53
9
    TStatusError(END_OF_FILE, false);                     \
54
9
    TStatusError(INTERNAL_ERROR, true);                   \
55
9
    TStatusError(RUNTIME_ERROR, true);                    \
56
9
    TStatusError(JNI_ERROR, true);                        \
57
9
    TStatusError(CANCELLED, false);                       \
58
9
    TStatusError(ANALYSIS_ERROR, false);                  \
59
9
    TStatusError(MEM_LIMIT_EXCEEDED, false);              \
60
9
    TStatusError(THRIFT_RPC_ERROR, true);                 \
61
9
    TStatusError(TIMEOUT, true);                          \
62
9
    TStatusError(LIMIT_REACH, false);                     \
63
9
    TStatusError(TOO_MANY_TASKS, true);                   \
64
9
    TStatusError(UNINITIALIZED, false);                   \
65
9
    TStatusError(INCOMPLETE, false);                      \
66
9
    TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \
67
9
    TStatusError(ABORTED, false);                         \
68
9
    TStatusError(DATA_QUALITY_ERROR, false);              \
69
9
    TStatusError(LABEL_ALREADY_EXISTS, true);             \
70
9
    TStatusError(NOT_AUTHORIZED, true);                   \
71
9
    TStatusError(BINLOG_DISABLE, false);                  \
72
9
    TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false);       \
73
9
    TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false);       \
74
9
    TStatusError(BINLOG_NOT_FOUND_DB, false);             \
75
9
    TStatusError(BINLOG_NOT_FOUND_TABLE, false);          \
76
9
    TStatusError(NETWORK_ERROR, false);                   \
77
9
    TStatusError(ILLEGAL_STATE, false);                   \
78
9
    TStatusError(SNAPSHOT_NOT_EXIST, true);               \
79
9
    TStatusError(HTTP_ERROR, true);                       \
80
9
    TStatusError(TABLET_MISSING, true);                   \
81
9
    TStatusError(NOT_MASTER, true);                       \
82
9
    TStatusError(OBTAIN_LOCK_FAILED, false);              \
83
9
    TStatusError(SNAPSHOT_EXPIRED, false);                \
84
9
    TStatusError(DELETE_BITMAP_LOCK_ERROR, false);        \
85
    TStatusError(FINISHED, false);
86
// E error_name, error_code, print_stacktrace
87
9
#define APPLY_FOR_OLAP_ERROR_CODES(E)                        \
88
9
    E(OK, 0, false);                                         \
89
9
    E(CALL_SEQUENCE_ERROR, -202, true);                      \
90
9
    E(BUFFER_OVERFLOW, -204, true);                          \
91
9
    E(CONFIG_ERROR, -205, true);                             \
92
9
    E(INIT_FAILED, -206, true);                              \
93
9
    E(INVALID_SCHEMA, -207, true);                           \
94
9
    E(CHECKSUM_ERROR, -208, true);                           \
95
9
    E(SIGNATURE_ERROR, -209, true);                          \
96
9
    E(CATCH_EXCEPTION, -210, true);                          \
97
9
    E(PARSE_PROTOBUF_ERROR, -211, true);                     \
98
9
    E(SERIALIZE_PROTOBUF_ERROR, -212, true);                 \
99
9
    E(WRITE_PROTOBUF_ERROR, -213, true);                     \
100
9
    E(VERSION_NOT_EXIST, -214, false);                       \
101
9
    E(TABLE_NOT_FOUND, -215, true);                          \
102
9
    E(TRY_LOCK_FAILED, -216, false);                         \
103
9
    E(EXCEEDED_LIMIT, -217, false);                          \
104
9
    E(OUT_OF_BOUND, -218, false);                            \
105
9
    E(INVALID_ROOT_PATH, -222, true);                        \
106
9
    E(NO_AVAILABLE_ROOT_PATH, -223, true);                   \
107
9
    E(CHECK_LINES_ERROR, -224, true);                        \
108
9
    E(INVALID_CLUSTER_INFO, -225, true);                     \
109
9
    E(TRANSACTION_NOT_EXIST, -226, false);                   \
110
9
    E(DISK_FAILURE, -227, true);                             \
111
9
    E(TRANSACTION_ALREADY_COMMITTED, -228, false);           \
112
9
    E(TRANSACTION_ALREADY_VISIBLE, -229, false);             \
113
9
    E(VERSION_ALREADY_MERGED, -230, true);                   \
114
9
    E(LZO_DISABLED, -231, true);                             \
115
9
    E(DISK_REACH_CAPACITY_LIMIT, -232, true);                \
116
9
    E(TOO_MANY_TRANSACTIONS, -233, false);                   \
117
9
    E(INVALID_SNAPSHOT_VERSION, -234, true);                 \
118
9
    E(TOO_MANY_VERSION, -235, false);                        \
119
9
    E(NOT_INITIALIZED, -236, true);                          \
120
9
    E(ALREADY_CANCELLED, -237, false);                       \
121
9
    E(TOO_MANY_SEGMENTS, -238, false);                       \
122
9
    E(ALREADY_CLOSED, -239, false);                          \
123
9
    E(SERVICE_UNAVAILABLE, -240, true);                      \
124
9
    E(NEED_SEND_AGAIN, -241, false);                         \
125
9
    E(OS_ERROR, -242, true);                                 \
126
9
    E(DIR_NOT_EXIST, -243, true);                            \
127
9
    E(CREATE_FILE_ERROR, -245, true);                        \
128
9
    E(STL_ERROR, -246, true);                                \
129
9
    E(MUTEX_ERROR, -247, true);                              \
130
9
    E(PTHREAD_ERROR, -248, true);                            \
131
9
    E(UB_FUNC_ERROR, -250, true);                            \
132
9
    E(COMPRESS_ERROR, -251, true);                           \
133
9
    E(DECOMPRESS_ERROR, -252, true);                         \
134
9
    E(FILE_ALREADY_EXIST, -253, true);                       \
135
9
    E(BAD_CAST, -254, true);                                 \
136
9
    E(ARITHMETIC_OVERFLOW_ERRROR, -255, false);              \
137
9
    E(PERMISSION_DENIED, -256, false);                       \
138
9
    E(QUERY_MEMORY_EXCEEDED, -257, false);                   \
139
9
    E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false);          \
140
9
    E(PROCESS_MEMORY_EXCEEDED, -259, false);                 \
141
9
    E(INVALID_INPUT_SYNTAX, -260, false);                    \
142
9
    E(CE_CMD_PARAMS_ERROR, -300, true);                      \
143
9
    E(CE_BUFFER_TOO_SMALL, -301, true);                      \
144
9
    E(CE_CMD_NOT_VALID, -302, true);                         \
145
9
    E(CE_LOAD_TABLE_ERROR, -303, true);                      \
146
9
    E(CE_NOT_FINISHED, -304, true);                          \
147
9
    E(CE_TABLET_ID_EXIST, -305, true);                       \
148
9
    E(TABLE_VERSION_DUPLICATE_ERROR, -400, true);            \
149
9
    E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true);       \
150
9
    E(TABLE_INDEX_VALIDATE_ERROR, -402, true);               \
151
9
    E(TABLE_INDEX_FIND_ERROR, -403, true);                   \
152
9
    E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true);           \
153
9
    E(TABLE_CREATE_META_ERROR, -405, true);                  \
154
9
    E(TABLE_ALREADY_DELETED_ERROR, -406, false);             \
155
9
    E(ENGINE_INSERT_EXISTS_TABLE, -500, true);               \
156
9
    E(ENGINE_DROP_NOEXISTS_TABLE, -501, true);               \
157
9
    E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true);            \
158
9
    E(TABLE_INSERT_DUPLICATION_ERROR, -503, true);           \
159
9
    E(DELETE_VERSION_ERROR, -504, true);                     \
160
9
    E(GC_SCAN_PATH_ERROR, -505, true);                       \
161
9
    E(ENGINE_INSERT_OLD_TABLET, -506, true);                 \
162
9
    E(FETCH_OTHER_ERROR, -600, true);                        \
163
9
    E(FETCH_TABLE_NOT_EXIST, -601, true);                    \
164
9
    E(FETCH_VERSION_ERROR, -602, true);                      \
165
9
    E(FETCH_SCHEMA_ERROR, -603, true);                       \
166
9
    E(FETCH_COMPRESSION_ERROR, -604, true);                  \
167
9
    E(FETCH_CONTEXT_NOT_EXIST, -605, true);                  \
168
9
    E(FETCH_GET_READER_PARAMS_ERR, -606, true);              \
169
9
    E(FETCH_SAVE_SESSION_ERR, -607, true);                   \
170
9
    E(FETCH_MEMORY_EXCEEDED, -608, true);                    \
171
9
    E(READER_IS_UNINITIALIZED, -700, true);                  \
172
9
    E(READER_GET_ITERATOR_ERROR, -701, true);                \
173
9
    E(CAPTURE_ROWSET_READER_ERROR, -702, true);              \
174
9
    E(READER_READING_ERROR, -703, true);                     \
175
9
    E(READER_INITIALIZE_ERROR, -704, true);                  \
176
9
    E(BE_VERSION_NOT_MATCH, -800, true);                     \
177
9
    E(BE_REPLACE_VERSIONS_ERROR, -801, true);                \
178
9
    E(BE_MERGE_ERROR, -802, true);                           \
179
9
    E(CAPTURE_ROWSET_ERROR, -804, true);                     \
180
9
    E(BE_SAVE_HEADER_ERROR, -805, true);                     \
181
9
    E(BE_INIT_OLAP_DATA, -806, true);                        \
182
9
    E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true);              \
183
9
    E(BE_NO_SUITABLE_VERSION, -808, false);                  \
184
9
    E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true);          \
185
9
    E(BE_ERROR_DELETE_ACTION, -811, true);                   \
186
9
    E(BE_SEGMENTS_OVERLAPPING, -812, true);                  \
187
9
    E(PUSH_INIT_ERROR, -900, true);                          \
188
9
    E(PUSH_VERSION_INCORRECT, -902, true);                   \
189
9
    E(PUSH_SCHEMA_MISMATCH, -903, true);                     \
190
9
    E(PUSH_CHECKSUM_ERROR, -904, true);                      \
191
9
    E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true);            \
192
9
    E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true);              \
193
9
    E(PUSH_BUILD_DELTA_ERROR, -907, true);                   \
194
9
    E(PUSH_VERSION_ALREADY_EXIST, -908, false);              \
195
9
    E(PUSH_TABLE_NOT_EXIST, -909, true);                     \
196
9
    E(PUSH_INPUT_DATA_ERROR, -910, true);                    \
197
9
    E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false);          \
198
9
    E(PUSH_BATCH_PROCESS_REMOVED, -912, true);               \
199
9
    E(PUSH_COMMIT_ROWSET, -913, true);                       \
200
9
    E(PUSH_ROWSET_NOT_FOUND, -914, true);                    \
201
9
    E(INDEX_LOAD_ERROR, -1000, true);                        \
202
9
    E(INDEX_CHECKSUM_ERROR, -1002, true);                    \
203
9
    E(INDEX_DELTA_PRUNING, -1003, true);                     \
204
9
    E(DATA_ROW_BLOCK_ERROR, -1100, true);                    \
205
9
    E(DATA_FILE_TYPE_ERROR, -1101, true);                    \
206
9
    E(WRITER_INDEX_WRITE_ERROR, -1200, true);                \
207
9
    E(WRITER_DATA_WRITE_ERROR, -1201, true);                 \
208
9
    E(WRITER_ROW_BLOCK_ERROR, -1202, true);                  \
209
9
    E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true);            \
210
9
    E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true);               \
211
9
    E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true);             \
212
9
    E(HEADER_ADD_VERSION, -1400, true);                      \
213
9
    E(HEADER_DELETE_VERSION, -1401, true);                   \
214
9
    E(HEADER_ADD_PENDING_DELTA, -1402, true);                \
215
9
    E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true);          \
216
9
    E(HEADER_INVALID_FLAG, -1404, true);                     \
217
9
    E(HEADER_LOAD_INVALID_KEY, -1408, true);                 \
218
9
    E(HEADER_LOAD_JSON_HEADER, -1410, true);                 \
219
9
    E(HEADER_INIT_FAILED, -1411, true);                      \
220
9
    E(HEADER_PB_PARSE_FAILED, -1412, true);                  \
221
9
    E(HEADER_HAS_PENDING_DATA, -1413, true);                 \
222
9
    E(SCHEMA_SCHEMA_INVALID, -1500, true);                   \
223
9
    E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true);             \
224
9
    E(ALTER_MULTI_TABLE_ERR, -1600, true);                   \
225
9
    E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true);             \
226
9
    E(ALTER_STATUS_ERR, -1602, true);                        \
227
9
    E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true);     \
228
9
    E(SCHEMA_CHANGE_INFO_INVALID, -1604, true);              \
229
9
    E(QUERY_SPLIT_KEY_ERR, -1605, true);                     \
230
9
    E(DATA_QUALITY_ERR, -1606, false);                       \
231
9
    E(COLUMN_DATA_LOAD_BLOCK, -1700, true);                  \
232
9
    E(COLUMN_DATA_RECORD_INDEX, -1701, true);                \
233
9
    E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true);            \
234
9
    E(COLUMN_DATA_READ_VAR_INT, -1703, true);                \
235
9
    E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true);              \
236
9
    E(COLUMN_READ_STREAM, -1706, true);                      \
237
9
    E(COLUMN_STREAM_NOT_EXIST, -1716, true);                 \
238
9
    E(COLUMN_VALUE_NULL, -1717, true);                       \
239
9
    E(COLUMN_SEEK_ERROR, -1719, true);                       \
240
9
    E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true);            \
241
9
    E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true);             \
242
9
    E(DELETE_INVALID_CONDITION, -1900, true);                \
243
9
    E(DELETE_UPDATE_HEADER_FAILED, -1901, true);             \
244
9
    E(DELETE_SAVE_HEADER_FAILED, -1902, true);               \
245
9
    E(DELETE_INVALID_PARAMETERS, -1903, true);               \
246
9
    E(DELETE_INVALID_VERSION, -1904, true);                  \
247
9
    E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false);         \
248
9
    E(CUMULATIVE_REPEAT_INIT, -2001, true);                  \
249
9
    E(CUMULATIVE_INVALID_PARAMETERS, -2002, true);           \
250
9
    E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true);   \
251
9
    E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \
252
9
    E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true);          \
253
9
    E(CUMULATIVE_MISS_VERSION, -2006, true);                 \
254
9
    E(FULL_NO_SUITABLE_VERSION, -2008, false);               \
255
9
    E(FULL_MISS_VERSION, -2009, true);                       \
256
9
    E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false);         \
257
9
    E(META_INVALID_ARGUMENT, -3000, true);                   \
258
9
    E(META_OPEN_DB_ERROR, -3001, true);                      \
259
9
    E(META_KEY_NOT_FOUND, -3002, false);                     \
260
9
    E(META_GET_ERROR, -3003, true);                          \
261
9
    E(META_PUT_ERROR, -3004, true);                          \
262
9
    E(META_ITERATOR_ERROR, -3005, true);                     \
263
9
    E(META_DELETE_ERROR, -3006, true);                       \
264
9
    E(META_ALREADY_EXIST, -3007, true);                      \
265
9
    E(ROWSET_WRITER_INIT, -3100, true);                      \
266
9
    E(ROWSET_SAVE_FAILED, -3101, true);                      \
267
9
    E(ROWSET_GENERATE_ID_FAILED, -3102, true);               \
268
9
    E(ROWSET_DELETE_FILE_FAILED, -3103, true);               \
269
9
    E(ROWSET_BUILDER_INIT, -3104, true);                     \
270
9
    E(ROWSET_TYPE_NOT_FOUND, -3105, true);                   \
271
9
    E(ROWSET_ALREADY_EXIST, -3106, true);                    \
272
9
    E(ROWSET_CREATE_READER, -3107, true);                    \
273
9
    E(ROWSET_INVALID, -3108, true);                          \
274
9
    E(ROWSET_READER_INIT, -3110, true);                      \
275
9
    E(ROWSET_INVALID_STATE_TRANSITION, -3112, true);         \
276
9
    E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true);           \
277
9
    E(ROWSET_ADD_MIGRATION_V2, -3114, true);                 \
278
9
    E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false);         \
279
9
    E(ROWSET_RENAME_FILE_FAILED, -3116, false);              \
280
9
    E(SEGCOMPACTION_INIT_READER, -3117, false);              \
281
9
    E(SEGCOMPACTION_INIT_WRITER, -3118, false);              \
282
9
    E(SEGCOMPACTION_FAILED, -3119, false);                   \
283
9
    E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true);             \
284
9
    E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true);      \
285
9
    E(INDEX_INVALID_PARAMETERS, -6000, false);               \
286
9
    E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false);           \
287
9
    E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false);           \
288
9
    E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false);          \
289
9
    E(INVERTED_INDEX_BYPASS, -6004, false);                  \
290
9
    E(INVERTED_INDEX_NO_TERMS, -6005, false);                \
291
9
    E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true);       \
292
9
    E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false);        \
293
9
    E(INVERTED_INDEX_BUILD_WAITTING, -6008, false);          \
294
9
    E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false);         \
295
9
    E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false);        \
296
9
    E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false);          \
297
9
    E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false);          \
298
9
    E(KEY_NOT_FOUND, -7000, false);                          \
299
9
    E(KEY_ALREADY_EXISTS, -7001, false);                     \
300
9
    E(ENTRY_NOT_FOUND, -7002, false);                        \
301
9
    E(NEW_ROWS_IN_PARTIAL_UPDATE, -7003, false);             \
302
9
    E(INVALID_TABLET_STATE, -7211, false);                   \
303
9
    E(ROWSETS_EXPIRED, -7311, false);                        \
304
9
    E(CGROUP_ERROR, -7411, false);                           \
305
    E(FATAL_ERROR, -7412, true);
306
307
// Define constexpr int error_code_name = error_code_value
308
#define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE;
309
APPLY_FOR_OLAP_ERROR_CODES(M)
310
#undef M
311
312
#define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name;
313
APPLY_FOR_THRIFT_ERROR_CODES(MM)
314
#undef MM
315
316
constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536;
317
struct ErrorCodeState {
318
    int16_t error_code = 0;
319
    bool stacktrace = true;
320
    std::string description;
321
    size_t count = 0; // Used for count the number of error happens
322
    std::mutex mutex; // lock guard for count state
323
};
324
extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM];
325
326
class ErrorCodeInitializer {
327
9
public:
328
589k
    ErrorCodeInitializer(int temp) : signal_value(temp) {
329
589k
        for (auto& error_state : error_states) {
330
589k
            error_state.error_code = 0;
331
9
        }
332
405
#define M(NAME, ENABLESTACKTRACE)                                  \
333
405
    error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \
334
405
    error_states[TStatusCode::NAME].description = #NAME;           \
335
405
    error_states[TStatusCode::NAME].error_code = TStatusCode::NAME;
336
9
        APPLY_FOR_THRIFT_ERROR_CODES(M)
337
#undef M
338
// In status.h, if error code > 0, then it means it will be used in TStatusCode and will
339
// also be used in FE.
340
// Other error codes that with error code < 0, will only be used in BE.
341
// We use abs(error code) as the index in error_states, so that these two kinds of error
342
// codes MUST not have overlap.
343
// Add an assert here to make sure the code in TStatusCode and other error code are not
344
9
// overlapped.
345
1.96k
#define M(NAME, ERRORCODE, ENABLESTACKTRACE)                    \
346
1.96k
    assert(error_states[abs(ERRORCODE)].error_code == 0);       \
347
1.96k
    error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \
348
1.96k
    error_states[abs(ERRORCODE)].error_code = ERRORCODE;
349
1.96k
        APPLY_FOR_OLAP_ERROR_CODES(M)
350
1.96k
#undef M
351
    }
352
9
353
    void check_init() const {
354
        //the signal value is 0, it means the global error states not inited, it's logical error
355
9
        // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time.
356
0
        if (signal_value == 0) {
357
0
            exit(-1);
358
9
        }
359
    }
360
361
private:
362
    int signal_value = 0;
363
};
364
365
extern ErrorCodeInitializer error_code_init;
366
} // namespace ErrorCode
367
368
class [[nodiscard]] Status {
369
2.83G
public:
370
    Status() : _code(ErrorCode::OK), _err_msg(nullptr) {}
371
372
10.2k
    // used to convert Exception to Status
373
10.2k
    Status(int code, std::string msg, std::string stack = "") : _code(code) {
374
10.2k
        _err_msg = std::make_unique<ErrMsg>();
375
10.2k
        _err_msg->_msg = std::move(msg);
376
7.85k
        if (config::enable_stacktrace) {
377
7.85k
            _err_msg->_stack = std::move(stack);
378
10.2k
        }
379
    }
380
381
187M
    // copy c'tor makes copy of error detail so Status can be returned by value
382
    Status(const Status& rhs) { *this = rhs; }
383
384
46.0M
    // move c'tor
385
    Status(Status&& rhs) noexcept = default;
386
387
192M
    // same as copy c'tor
388
192M
    Status& operator=(const Status& rhs) {
389
192M
        _code = rhs._code;
390
1.17M
        if (rhs._err_msg) {
391
190M
            _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg);
392
        } else {
393
            // If rhs error msg is empty, then should also clear current error msg
394
            // For example, if rhs is OK and current status is error, then copy to current
395
190M
            // status, should clear current error message.
396
190M
            _err_msg.reset();
397
192M
        }
398
192M
        return *this;
399
    }
400
401
133M
    // move assign
402
133M
    Status& operator=(Status&& rhs) noexcept {
403
133M
        _code = rhs._code;
404
832k
        if (rhs._err_msg) {
405
132M
            _err_msg = std::move(rhs._err_msg);
406
132M
        } else {
407
132M
            _err_msg.reset();
408
133M
        }
409
133M
        return *this;
410
    }
411
412
66.4k
    template <bool stacktrace = true>
413
66.4k
    Status static create(const TStatus& status) {
414
66.4k
        return Error<stacktrace>(
415
66.4k
                status.status_code,
416
66.4k
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
_ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE
Line
Count
Source
412
14.4k
    template <bool stacktrace = true>
413
14.4k
    Status static create(const TStatus& status) {
414
14.4k
        return Error<stacktrace>(
415
14.4k
                status.status_code,
416
14.4k
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE
Line
Count
Source
412
52.0k
    template <bool stacktrace = true>
413
52.0k
    Status static create(const TStatus& status) {
414
52.0k
        return Error<stacktrace>(
415
52.0k
                status.status_code,
416
52.0k
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
417
    }
418
419
8.72M
    template <bool stacktrace = true>
420
8.72M
    Status static create(const PStatus& pstatus) {
421
8.72M
        return Error<stacktrace>(
422
8.72M
                pstatus.status_code(),
423
8.72M
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
_ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE
Line
Count
Source
419
164k
    template <bool stacktrace = true>
420
164k
    Status static create(const PStatus& pstatus) {
421
164k
        return Error<stacktrace>(
422
164k
                pstatus.status_code(),
423
164k
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
_ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE
Line
Count
Source
419
8.56M
    template <bool stacktrace = true>
420
8.56M
    Status static create(const PStatus& pstatus) {
421
8.56M
        return Error<stacktrace>(
422
18.4E
                pstatus.status_code(),
423
8.56M
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
424
    }
425
426
12.4M
    template <int code, bool stacktrace = true, typename... Args>
427
12.4M
    Status static Error(std::string_view msg, Args&&... args) {
428
12.4M
        Status status;
429
12.4M
        status._code = code;
430
12.4M
        status._err_msg = std::make_unique<ErrMsg>();
431
11.7M
        if constexpr (sizeof...(args) == 0) {
432
11.7M
            status._err_msg->_msg = msg;
433
719k
        } else {
434
719k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
12.4M
        }
436
12.4M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1.34k
            // Delete the first one frame pointers, which are inside the status.h
439
1.34k
            status._err_msg->_stack = get_stack_trace(1);
440
1.34k
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
12.4M
        }
442
12.4M
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
503k
    template <int code, bool stacktrace = true, typename... Args>
427
503k
    Status static Error(std::string_view msg, Args&&... args) {
428
503k
        Status status;
429
503k
        status._code = code;
430
503k
        status._err_msg = std::make_unique<ErrMsg>();
431
503k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
503k
        }
436
503k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
503k
        }
442
503k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
17
    template <int code, bool stacktrace = true, typename... Args>
427
17
    Status static Error(std::string_view msg, Args&&... args) {
428
17
        Status status;
429
17
        status._code = code;
430
17
        status._err_msg = std::make_unique<ErrMsg>();
431
17
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
17
        }
436
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
17
        }
442
17
        return status;
_ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
28
    template <int code, bool stacktrace = true, typename... Args>
427
28
    Status static Error(std::string_view msg, Args&&... args) {
428
28
        Status status;
429
28
        status._code = code;
430
28
        status._err_msg = std::make_unique<ErrMsg>();
431
28
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
28
        }
436
28
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
7
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
7
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
28
        }
442
28
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1.87k
    template <int code, bool stacktrace = true, typename... Args>
427
1.87k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.87k
        Status status;
429
1.87k
        status._code = code;
430
1.87k
        status._err_msg = std::make_unique<ErrMsg>();
431
1.87k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.87k
        }
436
1.87k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.87k
        }
442
1.87k
        return status;
_ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin259ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
33
    template <int code, bool stacktrace = true, typename... Args>
427
33
    Status static Error(std::string_view msg, Args&&... args) {
428
33
        Status status;
429
33
        status._code = code;
430
33
        status._err_msg = std::make_unique<ErrMsg>();
431
33
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
33
        }
436
33
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
33
        }
442
33
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
8
        status._err_msg = std::make_unique<ErrMsg>();
431
8
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
6
    template <int code, bool stacktrace = true, typename... Args>
427
6
    Status static Error(std::string_view msg, Args&&... args) {
428
6
        Status status;
429
6
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
6
            status._err_msg->_msg = msg;
433
6
        } else {
434
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
6
        }
436
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
6
        }
442
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
251
    template <int code, bool stacktrace = true, typename... Args>
427
251
    Status static Error(std::string_view msg, Args&&... args) {
428
251
        Status status;
429
251
        status._code = code;
430
251
        status._err_msg = std::make_unique<ErrMsg>();
431
251
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
251
        }
436
251
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
71
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
71
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
251
        }
442
251
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
39
    template <int code, bool stacktrace = true, typename... Args>
427
39
    Status static Error(std::string_view msg, Args&&... args) {
428
39
        Status status;
429
39
        status._code = code;
430
39
        status._err_msg = std::make_unique<ErrMsg>();
431
39
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
39
        }
436
39
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
39
        }
442
39
        return status;
_ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
147k
    template <int code, bool stacktrace = true, typename... Args>
427
147k
    Status static Error(std::string_view msg, Args&&... args) {
428
147k
        Status status;
429
147k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
147k
            status._err_msg->_msg = msg;
433
147k
        } else {
434
147k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
147k
        }
436
147k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
147k
        }
442
147k
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
17
    template <int code, bool stacktrace = true, typename... Args>
427
17
    Status static Error(std::string_view msg, Args&&... args) {
428
17
        Status status;
429
17
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
17
            status._err_msg->_msg = msg;
433
17
        } else {
434
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
17
        }
436
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
17
        }
442
17
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
16.1k
    template <int code, bool stacktrace = true, typename... Args>
427
16.1k
    Status static Error(std::string_view msg, Args&&... args) {
428
16.1k
        Status status;
429
16.1k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
16.1k
            status._err_msg->_msg = msg;
433
16.1k
        } else {
434
16.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
16.1k
        }
436
16.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
16.1k
        }
442
16.1k
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
29
    template <int code, bool stacktrace = true, typename... Args>
427
29
    Status static Error(std::string_view msg, Args&&... args) {
428
29
        Status status;
429
29
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
29
            status._err_msg->_msg = msg;
433
29
        } else {
434
29
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
29
        }
436
29
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
29
        }
442
29
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
7
    template <int code, bool stacktrace = true, typename... Args>
427
7
    Status static Error(std::string_view msg, Args&&... args) {
428
7
        Status status;
429
7
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
7
            status._err_msg->_msg = msg;
433
7
        } else {
434
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
7
        }
436
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
7
        }
442
7
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
48.0k
    template <int code, bool stacktrace = true, typename... Args>
427
48.0k
    Status static Error(std::string_view msg, Args&&... args) {
428
48.0k
        Status status;
429
48.0k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
48.0k
            status._err_msg->_msg = msg;
433
48.0k
        } else {
434
48.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
48.0k
        }
436
48.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
32
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
32
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
48.0k
        }
442
48.0k
        return status;
_ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
443
    template <int code, bool stacktrace = true, typename... Args>
427
443
    Status static Error(std::string_view msg, Args&&... args) {
428
443
        Status status;
429
443
        status._code = code;
430
443
        status._err_msg = std::make_unique<ErrMsg>();
431
443
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
443
        }
436
443
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
443
        }
442
443
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
360
    template <int code, bool stacktrace = true, typename... Args>
427
360
    Status static Error(std::string_view msg, Args&&... args) {
428
360
        Status status;
429
360
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
360
            status._err_msg->_msg = msg;
433
360
        } else {
434
360
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
360
        }
436
360
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
360
        }
442
360
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
16
    template <int code, bool stacktrace = true, typename... Args>
427
16
    Status static Error(std::string_view msg, Args&&... args) {
428
16
        Status status;
429
16
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
16
            status._err_msg->_msg = msg;
433
16
        } else {
434
16
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
16
        }
436
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
16
        }
442
16
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
231k
    template <int code, bool stacktrace = true, typename... Args>
427
231k
    Status static Error(std::string_view msg, Args&&... args) {
428
231k
        Status status;
429
231k
        status._code = code;
430
231k
        status._err_msg = std::make_unique<ErrMsg>();
431
231k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
231k
        }
436
231k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
231k
        }
442
231k
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1.32k
    template <int code, bool stacktrace = true, typename... Args>
427
1.32k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.32k
        Status status;
429
1.32k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.32k
            status._err_msg->_msg = msg;
433
1.32k
        } else {
434
1.32k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.32k
        }
436
1.32k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.32k
        }
442
1.32k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
13
    template <int code, bool stacktrace = true, typename... Args>
427
13
    Status static Error(std::string_view msg, Args&&... args) {
428
13
        Status status;
429
13
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
13
            status._err_msg->_msg = msg;
433
13
        } else {
434
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
13
        }
436
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
13
        }
442
13
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_jS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
48
    template <int code, bool stacktrace = true, typename... Args>
427
48
    Status static Error(std::string_view msg, Args&&... args) {
428
48
        Status status;
429
48
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
48
            status._err_msg->_msg = msg;
433
48
        } else {
434
48
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
48
        }
436
48
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
48
        }
442
48
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
8
            status._err_msg->_msg = msg;
433
8
        } else {
434
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
458
    template <int code, bool stacktrace = true, typename... Args>
427
458
    Status static Error(std::string_view msg, Args&&... args) {
428
458
        Status status;
429
458
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
458
            status._err_msg->_msg = msg;
433
458
        } else {
434
458
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
458
        }
436
458
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
439
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
439
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
458
        }
442
458
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
12
    template <int code, bool stacktrace = true, typename... Args>
427
12
    Status static Error(std::string_view msg, Args&&... args) {
428
12
        Status status;
429
12
        status._code = code;
430
12
        status._err_msg = std::make_unique<ErrMsg>();
431
12
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
12
        }
436
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
12
        }
442
12
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
4
        status._err_msg = std::make_unique<ErrMsg>();
431
4
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
4
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
4
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA7_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA12_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
31
    template <int code, bool stacktrace = true, typename... Args>
427
31
    Status static Error(std::string_view msg, Args&&... args) {
428
31
        Status status;
429
31
        status._code = code;
430
31
        status._err_msg = std::make_unique<ErrMsg>();
431
31
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
31
        }
436
31
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
6
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
6
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
31
        }
442
31
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
4.09k
    template <int code, bool stacktrace = true, typename... Args>
427
4.09k
    Status static Error(std::string_view msg, Args&&... args) {
428
4.09k
        Status status;
429
4.09k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4.09k
            status._err_msg->_msg = msg;
433
4.09k
        } else {
434
4.09k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4.09k
        }
436
4.09k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
45
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
45
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4.09k
        }
442
4.09k
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
120k
    template <int code, bool stacktrace = true, typename... Args>
427
120k
    Status static Error(std::string_view msg, Args&&... args) {
428
120k
        Status status;
429
120k
        status._code = code;
430
120k
        status._err_msg = std::make_unique<ErrMsg>();
431
120k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
120k
        }
436
120k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
120k
        }
442
120k
        return status;
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
3
        status._err_msg = std::make_unique<ErrMsg>();
431
3
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
27.7k
    template <int code, bool stacktrace = true, typename... Args>
427
27.7k
    Status static Error(std::string_view msg, Args&&... args) {
428
27.7k
        Status status;
429
27.7k
        status._code = code;
430
27.7k
        status._err_msg = std::make_unique<ErrMsg>();
431
27.7k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
27.7k
        }
436
27.7k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
27.7k
        }
442
27.7k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
2
        status._err_msg = std::make_unique<ErrMsg>();
431
2
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
426
10
    template <int code, bool stacktrace = true, typename... Args>
427
10
    Status static Error(std::string_view msg, Args&&... args) {
428
10
        Status status;
429
10
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
10
            status._err_msg->_msg = msg;
433
10
        } else {
434
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
10
        }
436
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
10
        }
442
10
        return status;
_ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
3.78M
    template <int code, bool stacktrace = true, typename... Args>
427
3.78M
    Status static Error(std::string_view msg, Args&&... args) {
428
3.78M
        Status status;
429
3.78M
        status._code = code;
430
3.78M
        status._err_msg = std::make_unique<ErrMsg>();
431
3.78M
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3.78M
        }
436
3.78M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3.78M
        }
442
3.78M
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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_
_ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
16
    template <int code, bool stacktrace = true, typename... Args>
427
16
    Status static Error(std::string_view msg, Args&&... args) {
428
16
        Status status;
429
16
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
16
            status._err_msg->_msg = msg;
433
16
        } else {
434
16
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
16
        }
436
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
16
        }
442
16
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin239ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
14.9k
    template <int code, bool stacktrace = true, typename... Args>
427
14.9k
    Status static Error(std::string_view msg, Args&&... args) {
428
14.9k
        Status status;
429
14.9k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
14.9k
            status._err_msg->_msg = msg;
433
14.9k
        } else {
434
14.9k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
14.9k
        }
436
14.9k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
14.9k
        }
442
14.9k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
7
    template <int code, bool stacktrace = true, typename... Args>
427
7
    Status static Error(std::string_view msg, Args&&... args) {
428
7
        Status status;
429
7
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
7
            status._err_msg->_msg = msg;
433
7
        } else {
434
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
7
        }
436
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
7
        }
442
7
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
110
    template <int code, bool stacktrace = true, typename... Args>
427
110
    Status static Error(std::string_view msg, Args&&... args) {
428
110
        Status status;
429
110
        status._code = code;
430
110
        status._err_msg = std::make_unique<ErrMsg>();
431
110
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
110
        }
436
110
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
110
        }
442
110
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
8
            status._err_msg->_msg = msg;
433
8
        } else {
434
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
268
    template <int code, bool stacktrace = true, typename... Args>
427
268
    Status static Error(std::string_view msg, Args&&... args) {
428
268
        Status status;
429
268
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
268
            status._err_msg->_msg = msg;
433
268
        } else {
434
268
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
268
        }
436
268
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
268
        }
442
268
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
65
    template <int code, bool stacktrace = true, typename... Args>
427
65
    Status static Error(std::string_view msg, Args&&... args) {
428
65
        Status status;
429
65
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
65
            status._err_msg->_msg = msg;
433
65
        } else {
434
65
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
65
        }
436
65
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
65
        }
442
65
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
9
    template <int code, bool stacktrace = true, typename... Args>
427
9
    Status static Error(std::string_view msg, Args&&... args) {
428
9
        Status status;
429
9
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
9
            status._err_msg->_msg = msg;
433
9
        } else {
434
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
9
        }
436
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
9
        }
442
9
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
10.9k
    template <int code, bool stacktrace = true, typename... Args>
427
10.9k
    Status static Error(std::string_view msg, Args&&... args) {
428
10.9k
        Status status;
429
10.9k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
10.9k
            status._err_msg->_msg = msg;
433
10.9k
        } else {
434
10.9k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
10.9k
        }
436
10.9k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
10.9k
        }
442
10.9k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4.35k
    template <int code, bool stacktrace = true, typename... Args>
427
4.35k
    Status static Error(std::string_view msg, Args&&... args) {
428
4.35k
        Status status;
429
4.35k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4.35k
            status._err_msg->_msg = msg;
433
4.35k
        } else {
434
4.35k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4.35k
        }
436
4.35k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4.35k
        }
442
4.35k
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
137
    template <int code, bool stacktrace = true, typename... Args>
427
137
    Status static Error(std::string_view msg, Args&&... args) {
428
137
        Status status;
429
137
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
137
            status._err_msg->_msg = msg;
433
137
        } else {
434
137
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
137
        }
436
137
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
137
        }
442
137
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
851
    template <int code, bool stacktrace = true, typename... Args>
427
851
    Status static Error(std::string_view msg, Args&&... args) {
428
851
        Status status;
429
851
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
851
            status._err_msg->_msg = msg;
433
851
        } else {
434
851
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
851
        }
436
851
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
851
        }
442
851
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1.67k
    template <int code, bool stacktrace = true, typename... Args>
427
1.67k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.67k
        Status status;
429
1.67k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.67k
            status._err_msg->_msg = msg;
433
1.67k
        } else {
434
1.67k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.67k
        }
436
1.67k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.67k
        }
442
1.67k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
42
    template <int code, bool stacktrace = true, typename... Args>
427
42
    Status static Error(std::string_view msg, Args&&... args) {
428
42
        Status status;
429
42
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
42
            status._err_msg->_msg = msg;
433
42
        } else {
434
42
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
42
        }
436
42
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
42
        }
442
42
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
14
    template <int code, bool stacktrace = true, typename... Args>
427
14
    Status static Error(std::string_view msg, Args&&... args) {
428
14
        Status status;
429
14
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
14
            status._err_msg->_msg = msg;
433
14
        } else {
434
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
14
        }
436
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
14
        }
442
14
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEES6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
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_
_ZN5doris6Status5ErrorILi47ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
120
    template <int code, bool stacktrace = true, typename... Args>
427
120
    Status static Error(std::string_view msg, Args&&... args) {
428
120
        Status status;
429
120
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
120
            status._err_msg->_msg = msg;
433
120
        } else {
434
120
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
120
        }
436
120
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
120
        }
442
120
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
10
    template <int code, bool stacktrace = true, typename... Args>
427
10
    Status static Error(std::string_view msg, Args&&... args) {
428
10
        Status status;
429
10
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
10
            status._err_msg->_msg = msg;
433
10
        } else {
434
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
10
        }
436
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
10
        }
442
10
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_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_
_ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_
Line
Count
Source
426
1.18k
    template <int code, bool stacktrace = true, typename... Args>
427
1.18k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.18k
        Status status;
429
1.18k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.18k
            status._err_msg->_msg = msg;
433
1.18k
        } else {
434
1.18k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.18k
        }
436
1.18k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.18k
        }
442
1.18k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
285
    template <int code, bool stacktrace = true, typename... Args>
427
285
    Status static Error(std::string_view msg, Args&&... args) {
428
285
        Status status;
429
285
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
285
            status._err_msg->_msg = msg;
433
285
        } else {
434
285
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
285
        }
436
285
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
285
        }
442
285
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
10
    template <int code, bool stacktrace = true, typename... Args>
427
10
    Status static Error(std::string_view msg, Args&&... args) {
428
10
        Status status;
429
10
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
10
            status._err_msg->_msg = msg;
433
10
        } else {
434
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
10
        }
436
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
10
        }
442
10
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
17
    template <int code, bool stacktrace = true, typename... Args>
427
17
    Status static Error(std::string_view msg, Args&&... args) {
428
17
        Status status;
429
17
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
17
            status._err_msg->_msg = msg;
433
17
        } else {
434
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
17
        }
436
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
17
        }
442
17
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
7
    template <int code, bool stacktrace = true, typename... Args>
427
7
    Status static Error(std::string_view msg, Args&&... args) {
428
7
        Status status;
429
7
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
7
            status._err_msg->_msg = msg;
433
7
        } else {
434
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
7
        }
436
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
7
        }
442
7
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
6
    template <int code, bool stacktrace = true, typename... Args>
427
6
    Status static Error(std::string_view msg, Args&&... args) {
428
6
        Status status;
429
6
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
6
            status._err_msg->_msg = msg;
433
6
        } else {
434
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
6
        }
436
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
6
        }
442
6
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
426
18
    template <int code, bool stacktrace = true, typename... Args>
427
18
    Status static Error(std::string_view msg, Args&&... args) {
428
18
        Status status;
429
18
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
18
            status._err_msg->_msg = msg;
433
18
        } else {
434
18
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
18
        }
436
18
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
18
        }
442
18
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT1_
Line
Count
Source
426
6
    template <int code, bool stacktrace = true, typename... Args>
427
6
    Status static Error(std::string_view msg, Args&&... args) {
428
6
        Status status;
429
6
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
6
            status._err_msg->_msg = msg;
433
6
        } else {
434
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
6
        }
436
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
6
        }
442
6
        return status;
_ZN5doris6Status5ErrorILi47ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi47ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
8
            status._err_msg->_msg = msg;
433
8
        } else {
434
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
19
    template <int code, bool stacktrace = true, typename... Args>
427
19
    Status static Error(std::string_view msg, Args&&... args) {
428
19
        Status status;
429
19
        status._code = code;
430
19
        status._err_msg = std::make_unique<ErrMsg>();
431
19
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
19
        }
436
19
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
19
        }
442
19
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
7
    template <int code, bool stacktrace = true, typename... Args>
427
7
    Status static Error(std::string_view msg, Args&&... args) {
428
7
        Status status;
429
7
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
7
            status._err_msg->_msg = msg;
433
7
        } else {
434
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
7
        }
436
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
7
        }
442
7
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
6
    template <int code, bool stacktrace = true, typename... Args>
427
6
    Status static Error(std::string_view msg, Args&&... args) {
428
6
        Status status;
429
6
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
6
            status._err_msg->_msg = msg;
433
6
        } else {
434
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
6
        }
436
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
6
        }
442
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
11
    template <int code, bool stacktrace = true, typename... Args>
427
11
    Status static Error(std::string_view msg, Args&&... args) {
428
11
        Status status;
429
11
        status._code = code;
430
11
        status._err_msg = std::make_unique<ErrMsg>();
431
11
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
11
        }
436
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
11
        }
442
11
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
16
    template <int code, bool stacktrace = true, typename... Args>
427
16
    Status static Error(std::string_view msg, Args&&... args) {
428
16
        Status status;
429
16
        status._code = code;
430
16
        status._err_msg = std::make_unique<ErrMsg>();
431
16
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
16
        }
436
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
16
        }
442
16
        return status;
_ZN5doris6Status5ErrorILin6003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
24
    template <int code, bool stacktrace = true, typename... Args>
427
24
    Status static Error(std::string_view msg, Args&&... args) {
428
24
        Status status;
429
24
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
24
            status._err_msg->_msg = msg;
433
24
        } else {
434
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
24
        }
436
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
24
        }
442
24
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
53
    template <int code, bool stacktrace = true, typename... Args>
427
53
    Status static Error(std::string_view msg, Args&&... args) {
428
53
        Status status;
429
53
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
53
            status._err_msg->_msg = msg;
433
53
        } else {
434
53
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
53
        }
436
53
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
53
        }
442
53
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
6
    template <int code, bool stacktrace = true, typename... Args>
427
6
    Status static Error(std::string_view msg, Args&&... args) {
428
6
        Status status;
429
6
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
6
            status._err_msg->_msg = msg;
433
6
        } else {
434
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
6
        }
436
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
6
        }
442
6
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
2
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
2
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRA30_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
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: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_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
426
5.23k
    template <int code, bool stacktrace = true, typename... Args>
427
5.23k
    Status static Error(std::string_view msg, Args&&... args) {
428
5.23k
        Status status;
429
5.23k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5.23k
            status._err_msg->_msg = msg;
433
5.23k
        } else {
434
5.23k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5.25k
        }
436
5.23k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5.23k
        }
442
5.23k
        return status;
_ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6004ELb1EJRmRiRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2.08k
    template <int code, bool stacktrace = true, typename... Args>
427
2.08k
    Status static Error(std::string_view msg, Args&&... args) {
428
2.08k
        Status status;
429
2.08k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2.08k
            status._err_msg->_msg = msg;
433
2.08k
        } else {
434
2.08k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2.09k
        }
436
2.08k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2.08k
        }
442
2.08k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILin6001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
287
    template <int code, bool stacktrace = true, typename... Args>
427
287
    Status static Error(std::string_view msg, Args&&... args) {
428
287
        Status status;
429
287
        status._code = code;
430
287
        status._err_msg = std::make_unique<ErrMsg>();
431
287
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
287
        }
436
287
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
287
        }
442
287
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
27
    template <int code, bool stacktrace = true, typename... Args>
427
27
    Status static Error(std::string_view msg, Args&&... args) {
428
27
        Status status;
429
27
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
27
            status._err_msg->_msg = msg;
433
27
        } else {
434
27
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
27
        }
436
27
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
27
        }
442
27
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
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: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
12.8k
    template <int code, bool stacktrace = true, typename... Args>
427
12.8k
    Status static Error(std::string_view msg, Args&&... args) {
428
12.8k
        Status status;
429
12.8k
        status._code = code;
430
12.8k
        status._err_msg = std::make_unique<ErrMsg>();
431
12.8k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
12.8k
        }
436
12.8k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
12.8k
        }
442
12.8k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
4
        status._err_msg = std::make_unique<ErrMsg>();
431
4
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJlRlS2_S2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5.95M
    template <int code, bool stacktrace = true, typename... Args>
427
5.95M
    Status static Error(std::string_view msg, Args&&... args) {
428
5.95M
        Status status;
429
5.95M
        status._code = code;
430
5.95M
        status._err_msg = std::make_unique<ErrMsg>();
431
5.95M
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5.98M
        }
436
5.95M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5.95M
        }
442
5.95M
        return status;
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: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
109
    template <int code, bool stacktrace = true, typename... Args>
427
109
    Status static Error(std::string_view msg, Args&&... args) {
428
109
        Status status;
429
109
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
109
            status._err_msg->_msg = msg;
433
109
        } else {
434
109
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
109
        }
436
109
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
100
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
100
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
109
        }
442
109
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
2
        status._err_msg = std::make_unique<ErrMsg>();
431
2
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
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_
_ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
385
    template <int code, bool stacktrace = true, typename... Args>
427
385
    Status static Error(std::string_view msg, Args&&... args) {
428
385
        Status status;
429
385
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
385
            status._err_msg->_msg = msg;
433
385
        } else {
434
385
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
385
        }
436
385
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
385
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
385
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
385
        }
442
385
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi6ELb1EJmRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_EEES0_St17basic_string_viewIcS6_EDpOT1_
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
426
9
    template <int code, bool stacktrace = true, typename... Args>
427
9
    Status static Error(std::string_view msg, Args&&... args) {
428
9
        Status status;
429
9
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
9
            status._err_msg->_msg = msg;
433
9
        } else {
434
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
9
        }
436
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
9
        }
442
9
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3105ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
79
    template <int code, bool stacktrace = true, typename... Args>
427
79
    Status static Error(std::string_view msg, Args&&... args) {
428
79
        Status status;
429
79
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
79
            status._err_msg->_msg = msg;
433
79
        } else {
434
79
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
79
        }
436
79
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
79
        }
442
79
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_
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: _ZN5doris6Status5ErrorILi42ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEllEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
241
    template <int code, bool stacktrace = true, typename... Args>
427
241
    Status static Error(std::string_view msg, Args&&... args) {
428
241
        Status status;
429
241
        status._code = code;
430
241
        status._err_msg = std::make_unique<ErrMsg>();
431
241
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
241
        }
436
241
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
241
        }
442
241
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_mS2_RiRKmEEES0_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: _ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_3ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
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_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: _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_9FieldTypeE40EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE40EEUt_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
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin7002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
8.62k
    template <int code, bool stacktrace = true, typename... Args>
427
8.62k
    Status static Error(std::string_view msg, Args&&... args) {
428
8.62k
        Status status;
429
8.62k
        status._code = code;
430
8.62k
        status._err_msg = std::make_unique<ErrMsg>();
431
8.62k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8.62k
        }
436
8.62k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8.62k
        }
442
8.62k
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
459
    template <int code, bool stacktrace = true, typename... Args>
427
459
    Status static Error(std::string_view msg, Args&&... args) {
428
459
        Status status;
429
459
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
459
            status._err_msg->_msg = msg;
433
459
        } else {
434
459
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
459
        }
436
459
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
459
        }
442
459
        return status;
_ZN5doris6Status5ErrorILin7000ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
180k
    template <int code, bool stacktrace = true, typename... Args>
427
180k
    Status static Error(std::string_view msg, Args&&... args) {
428
180k
        Status status;
429
180k
        status._code = code;
430
180k
        status._err_msg = std::make_unique<ErrMsg>();
431
180k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
180k
        }
436
180k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
180k
        }
442
180k
        return status;
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
338
    template <int code, bool stacktrace = true, typename... Args>
427
338
    Status static Error(std::string_view msg, Args&&... args) {
428
338
        Status status;
429
338
        status._code = code;
430
338
        status._err_msg = std::make_unique<ErrMsg>();
431
338
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
338
        }
436
338
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
338
        }
442
338
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRjRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJRjRmRKmS5_S5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRtRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmjmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmjmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S2_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmjmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmjEEES0_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: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
10
    template <int code, bool stacktrace = true, typename... Args>
427
10
    Status static Error(std::string_view msg, Args&&... args) {
428
10
        Status status;
429
10
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
10
            status._err_msg->_msg = msg;
433
10
        } else {
434
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
10
        }
436
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
10
        }
442
10
        return status;
_ZN5doris6Status5ErrorILin7003ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
36
    template <int code, bool stacktrace = true, typename... Args>
427
36
    Status static Error(std::string_view msg, Args&&... args) {
428
36
        Status status;
429
36
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
36
            status._err_msg->_msg = msg;
433
36
        } else {
434
36
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
36
        }
436
36
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
36
        }
442
36
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRKbRbRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESG_SE_EEES0_St17basic_string_viewIcSC_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSC_SA_EEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v224HierarchicalDataIterator8ReadTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin300ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILin243ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
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
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin223ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin222ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
125k
    template <int code, bool stacktrace = true, typename... Args>
427
125k
    Status static Error(std::string_view msg, Args&&... args) {
428
125k
        Status status;
429
125k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
125k
            status._err_msg->_msg = msg;
433
125k
        } else {
434
125k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
125k
        }
436
125k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
125k
        }
442
125k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_
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
426
33.1k
    template <int code, bool stacktrace = true, typename... Args>
427
33.1k
    Status static Error(std::string_view msg, Args&&... args) {
428
33.1k
        Status status;
429
33.1k
        status._code = code;
430
33.1k
        status._err_msg = std::make_unique<ErrMsg>();
431
33.1k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
33.2k
        }
436
33.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
33.1k
        }
442
33.1k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
808
    template <int code, bool stacktrace = true, typename... Args>
427
808
    Status static Error(std::string_view msg, Args&&... args) {
428
808
        Status status;
429
808
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
808
            status._err_msg->_msg = msg;
433
808
        } else {
434
808
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
808
        }
436
808
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
808
        }
442
808
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
228k
    template <int code, bool stacktrace = true, typename... Args>
427
228k
    Status static Error(std::string_view msg, Args&&... args) {
428
228k
        Status status;
429
228k
        status._code = code;
430
228k
        status._err_msg = std::make_unique<ErrMsg>();
431
228k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
228k
        }
436
228k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
228k
        }
442
228k
        return status;
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
203
    template <int code, bool stacktrace = true, typename... Args>
427
203
    Status static Error(std::string_view msg, Args&&... args) {
428
203
        Status status;
429
203
        status._code = code;
430
203
        status._err_msg = std::make_unique<ErrMsg>();
431
203
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
203
        }
436
203
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
203
        }
442
203
        return status;
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
40.3k
    template <int code, bool stacktrace = true, typename... Args>
427
40.3k
    Status static Error(std::string_view msg, Args&&... args) {
428
40.3k
        Status status;
429
40.3k
        status._code = code;
430
40.3k
        status._err_msg = std::make_unique<ErrMsg>();
431
40.3k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
40.3k
        }
436
40.3k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
40.3k
        }
442
40.3k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
138
    template <int code, bool stacktrace = true, typename... Args>
427
138
    Status static Error(std::string_view msg, Args&&... args) {
428
138
        Status status;
429
138
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
138
            status._err_msg->_msg = msg;
433
138
        } else {
434
138
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
138
        }
436
138
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
138
        }
442
138
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin506ELb1EJlNSt7__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: _ZN5doris6Status5ErrorILin406ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
426
4.96k
    template <int code, bool stacktrace = true, typename... Args>
427
4.96k
    Status static Error(std::string_view msg, Args&&... args) {
428
4.96k
        Status status;
429
4.96k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4.96k
            status._err_msg->_msg = msg;
433
4.96k
        } else {
434
4.96k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4.96k
        }
436
4.96k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4.96k
        }
442
4.96k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin402ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin502ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNS_14TStorageFormat4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_lEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
11
    template <int code, bool stacktrace = true, typename... Args>
427
11
    Status static Error(std::string_view msg, Args&&... args) {
428
11
        Status status;
429
11
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
11
            status._err_msg->_msg = msg;
433
11
        } else {
434
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
11
        }
436
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
11
        }
442
11
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
16
    template <int code, bool stacktrace = true, typename... Args>
427
16
    Status static Error(std::string_view msg, Args&&... args) {
428
16
        Status status;
429
16
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
16
            status._err_msg->_msg = msg;
433
16
        } else {
434
16
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
16
        }
436
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
16
        }
442
16
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJimEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_26TPartialUpdateNewRowPolicy4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRmEEES0_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: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRKlRlS3_EEES0_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: _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
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
14.6k
    template <int code, bool stacktrace = true, typename... Args>
427
14.6k
    Status static Error(std::string_view msg, Args&&... args) {
428
14.6k
        Status status;
429
14.6k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
14.6k
            status._err_msg->_msg = msg;
433
14.6k
        } else {
434
14.6k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
14.6k
        }
436
14.6k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
14.6k
        }
442
14.6k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi39ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
8
            status._err_msg->_msg = msg;
433
8
        } else {
434
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
1
        status._err_msg = std::make_unique<ErrMsg>();
431
1
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
5
    template <int code, bool stacktrace = true, typename... Args>
427
5
    Status static Error(std::string_view msg, Args&&... args) {
428
5
        Status status;
429
5
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
5
            status._err_msg->_msg = msg;
433
5
        } else {
434
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
5
        }
436
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
5
        }
442
5
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
389k
    template <int code, bool stacktrace = true, typename... Args>
427
389k
    Status static Error(std::string_view msg, Args&&... args) {
428
389k
        Status status;
429
389k
        status._code = code;
430
389k
        status._err_msg = std::make_unique<ErrMsg>();
431
389k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
389k
        }
436
389k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
389k
        }
442
389k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjRKjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_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_
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
907
    template <int code, bool stacktrace = true, typename... Args>
427
907
    Status static Error(std::string_view msg, Args&&... args) {
428
907
        Status status;
429
907
        status._code = code;
430
907
        status._err_msg = std::make_unique<ErrMsg>();
431
907
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
907
        }
436
907
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
907
        }
442
907
        return status;
_ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1.03k
    template <int code, bool stacktrace = true, typename... Args>
427
1.03k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.03k
        Status status;
429
1.03k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.03k
            status._err_msg->_msg = msg;
433
1.03k
        } else {
434
1.03k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.03k
        }
436
1.03k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.03k
        }
442
1.03k
        return status;
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2.86k
    template <int code, bool stacktrace = true, typename... Args>
427
2.86k
    Status static Error(std::string_view msg, Args&&... args) {
428
2.86k
        Status status;
429
2.86k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2.86k
            status._err_msg->_msg = msg;
433
2.86k
        } else {
434
2.86k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2.86k
        }
436
2.86k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2.86k
        }
442
2.86k
        return status;
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
9
    template <int code, bool stacktrace = true, typename... Args>
427
9
    Status static Error(std::string_view msg, Args&&... args) {
428
9
        Status status;
429
9
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
9
            status._err_msg->_msg = msg;
433
9
        } else {
434
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
9
        }
436
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
9
        }
442
9
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
20
    template <int code, bool stacktrace = true, typename... Args>
427
20
    Status static Error(std::string_view msg, Args&&... args) {
428
20
        Status status;
429
20
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
20
            status._err_msg->_msg = msg;
433
20
        } else {
434
20
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
20
        }
436
20
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
20
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
20
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
20
        }
442
20
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
2
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
2
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
14
    template <int code, bool stacktrace = true, typename... Args>
427
14
    Status static Error(std::string_view msg, Args&&... args) {
428
14
        Status status;
429
14
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
14
            status._err_msg->_msg = msg;
433
14
        } else {
434
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
14
        }
436
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
14
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
14
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
14
        }
442
14
        return status;
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: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRiN3orc8TypeKindES4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi4ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1.00k
    template <int code, bool stacktrace = true, typename... Args>
427
1.00k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.00k
        Status status;
429
1.00k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.00k
            status._err_msg->_msg = msg;
433
1.00k
        } else {
434
1.00k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.00k
        }
436
1.00k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
2
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
2
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.00k
        }
442
1.00k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
4
            status._err_msg->_msg = msg;
433
4
        } else {
434
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
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
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
4
    template <int code, bool stacktrace = true, typename... Args>
427
4
    Status static Error(std::string_view msg, Args&&... args) {
428
4
        Status status;
429
4
        status._code = code;
430
4
        status._err_msg = std::make_unique<ErrMsg>();
431
4
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
4
        }
436
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
4
        }
442
4
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
9
    template <int code, bool stacktrace = true, typename... Args>
427
9
    Status static Error(std::string_view msg, Args&&... args) {
428
9
        Status status;
429
9
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
9
            status._err_msg->_msg = msg;
433
9
        } else {
434
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
9
        }
436
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
9
        }
442
9
        return status;
_ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
8
    template <int code, bool stacktrace = true, typename... Args>
427
8
    Status static Error(std::string_view msg, Args&&... args) {
428
8
        Status status;
429
8
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
8
            status._err_msg->_msg = msg;
433
8
        } else {
434
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
8
        }
436
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
5
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
5
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
8
        }
442
8
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNS_27PRerunFragmentParams_OpcodeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
_ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
276k
    template <int code, bool stacktrace = true, typename... Args>
427
276k
    Status static Error(std::string_view msg, Args&&... args) {
428
276k
        Status status;
429
276k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
276k
            status._err_msg->_msg = msg;
433
276k
        } else {
434
276k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
276k
        }
436
276k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
276k
        }
442
276k
        return status;
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_
_ZN5doris6Status5ErrorILi5ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
65
    template <int code, bool stacktrace = true, typename... Args>
427
65
    Status static Error(std::string_view msg, Args&&... args) {
428
65
        Status status;
429
65
        status._code = code;
430
65
        status._err_msg = std::make_unique<ErrMsg>();
431
65
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
65
        }
436
65
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
2
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
2
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
65
        }
442
65
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
1
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
1
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
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: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi9ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRlS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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_
_ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7411ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
228k
    template <int code, bool stacktrace = true, typename... Args>
427
228k
    Status static Error(std::string_view msg, Args&&... args) {
428
228k
        Status status;
429
228k
        status._code = code;
430
228k
        status._err_msg = std::make_unique<ErrMsg>();
431
228k
        if constexpr (sizeof...(args) == 0) {
432
            status._err_msg->_msg = msg;
433
        } else {
434
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
228k
        }
436
228k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
228k
        }
442
228k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi48ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
24
    template <int code, bool stacktrace = true, typename... Args>
427
24
    Status static Error(std::string_view msg, Args&&... args) {
428
24
        Status status;
429
24
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
24
            status._err_msg->_msg = msg;
433
24
        } else {
434
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
24
        }
436
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
24
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
24
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
24
        }
442
24
        return status;
_ZN5doris6Status5ErrorILi33ELb0EJRKhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA20_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_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
3
    template <int code, bool stacktrace = true, typename... Args>
427
3
    Status static Error(std::string_view msg, Args&&... args) {
428
3
        Status status;
429
3
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
3
            status._err_msg->_msg = msg;
433
3
        } else {
434
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
3
        }
436
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
3
        }
442
3
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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
426
2
    template <int code, bool stacktrace = true, typename... Args>
427
2
    Status static Error(std::string_view msg, Args&&... args) {
428
2
        Status status;
429
2
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
2
            status._err_msg->_msg = msg;
433
2
        } else {
434
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
2
        }
436
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
2
        }
442
2
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
17
    template <int code, bool stacktrace = true, typename... Args>
427
17
    Status static Error(std::string_view msg, Args&&... args) {
428
17
        Status status;
429
17
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
17
            status._err_msg->_msg = msg;
433
17
        } else {
434
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
17
        }
436
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
17
        }
442
17
        return status;
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRmRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJmRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJmRilEEES0_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: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
1
    template <int code, bool stacktrace = true, typename... Args>
427
1
    Status static Error(std::string_view msg, Args&&... args) {
428
1
        Status status;
429
1
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1
            status._err_msg->_msg = msg;
433
1
        } else {
434
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1
        }
436
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1
        }
442
1
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_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: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_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_
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Line
Count
Source
426
24
    template <int code, bool stacktrace = true, typename... Args>
427
24
    Status static Error(std::string_view msg, Args&&... args) {
428
24
        Status status;
429
24
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
24
            status._err_msg->_msg = msg;
433
24
        } else {
434
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
24
        }
436
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
24
        }
442
24
        return status;
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Line
Count
Source
426
1.12k
    template <int code, bool stacktrace = true, typename... Args>
427
1.12k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.12k
        Status status;
429
1.12k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.12k
            status._err_msg->_msg = msg;
433
1.12k
        } else {
434
1.12k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.12k
        }
436
1.12k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.12k
        }
442
1.12k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiiiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7311ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
426
19
    template <int code, bool stacktrace = true, typename... Args>
427
19
    Status static Error(std::string_view msg, Args&&... args) {
428
19
        Status status;
429
19
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
19
            status._err_msg->_msg = msg;
433
19
        } else {
434
19
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
19
        }
436
19
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
19
        }
442
19
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
426
79
    template <int code, bool stacktrace = true, typename... Args>
427
79
    Status static Error(std::string_view msg, Args&&... args) {
428
79
        Status status;
429
79
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
79
            status._err_msg->_msg = msg;
433
79
        } else {
434
79
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
79
        }
436
79
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
79
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
79
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
79
        }
442
79
        return status;
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: _ZN5doris6Status5ErrorILi6ELb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
1.43k
    template <int code, bool stacktrace = true, typename... Args>
427
1.43k
    Status static Error(std::string_view msg, Args&&... args) {
428
1.43k
        Status status;
429
1.43k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
1.43k
            status._err_msg->_msg = msg;
433
1.43k
        } else {
434
1.43k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
1.43k
        }
436
1.43k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
1.43k
        }
442
1.43k
        return status;
_ZN5doris6Status5ErrorILi6ELb1EJRlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
110
    template <int code, bool stacktrace = true, typename... Args>
427
110
    Status static Error(std::string_view msg, Args&&... args) {
428
110
        Status status;
429
110
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
110
            status._err_msg->_msg = msg;
433
110
        } else {
434
110
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
110
        }
436
110
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
100
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
100
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
110
        }
442
110
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
27.1k
    template <int code, bool stacktrace = true, typename... Args>
427
27.1k
    Status static Error(std::string_view msg, Args&&... args) {
428
27.1k
        Status status;
429
27.1k
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
27.1k
            status._err_msg->_msg = msg;
433
27.1k
        } else {
434
27.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
27.1k
        }
436
27.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
27.1k
        }
442
27.1k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
426
7
    template <int code, bool stacktrace = true, typename... Args>
427
7
    Status static Error(std::string_view msg, Args&&... args) {
428
7
        Status status;
429
7
        status._code = code;
430
        status._err_msg = std::make_unique<ErrMsg>();
431
        if constexpr (sizeof...(args) == 0) {
432
7
            status._err_msg->_msg = msg;
433
7
        } else {
434
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
435
7
        }
436
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
437
            config::enable_stacktrace) {
438
0
            // Delete the first one frame pointers, which are inside the status.h
439
            status._err_msg->_stack = get_stack_trace(1);
440
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
441
7
        }
442
7
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRA10_KcPS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
443
    }
444
445
8.73M
    template <bool stacktrace = true, typename... Args>
446
8.73M
    Status static Error(int code, std::string_view msg, Args&&... args) {
447
8.73M
        Status status;
448
8.73M
        status._code = code;
449
8.73M
        status._err_msg = std::make_unique<ErrMsg>();
450
8.73M
        if constexpr (sizeof...(args) == 0) {
451
8.73M
            status._err_msg->_msg = msg;
452
2
        } else {
453
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
454
8.73M
        }
455
8.73M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
456
32
            config::enable_stacktrace) {
457
32
            status._err_msg->_stack = get_stack_trace(1);
458
32
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
459
8.73M
        }
460
8.73M
        return status;
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
445
8.49M
    template <bool stacktrace = true, typename... Args>
446
8.49M
    Status static Error(int code, std::string_view msg, Args&&... args) {
447
8.49M
        Status status;
448
8.49M
        status._code = code;
449
8.49M
        status._err_msg = std::make_unique<ErrMsg>();
450
8.49M
        if constexpr (sizeof...(args) == 0) {
451
            status._err_msg->_msg = msg;
452
        } else {
453
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
454
8.69M
        }
455
8.49M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
456
30
            config::enable_stacktrace) {
457
            status._err_msg->_stack = get_stack_trace(1);
458
30
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
459
8.49M
        }
460
8.49M
        return status;
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
445
245k
    template <bool stacktrace = true, typename... Args>
446
245k
    Status static Error(int code, std::string_view msg, Args&&... args) {
447
245k
        Status status;
448
245k
        status._code = code;
449
245k
        status._err_msg = std::make_unique<ErrMsg>();
450
245k
        if constexpr (sizeof...(args) == 0) {
451
            status._err_msg->_msg = msg;
452
        } else {
453
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
454
245k
        }
455
245k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
456
0
            config::enable_stacktrace) {
457
            status._err_msg->_stack = get_stack_trace(1);
458
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
459
245k
        }
460
245k
        return status;
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
445
2
    template <bool stacktrace = true, typename... Args>
446
2
    Status static Error(int code, std::string_view msg, Args&&... args) {
447
2
        Status status;
448
2
        status._code = code;
449
        status._err_msg = std::make_unique<ErrMsg>();
450
        if constexpr (sizeof...(args) == 0) {
451
2
            status._err_msg->_msg = msg;
452
2
        } else {
453
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
454
2
        }
455
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
456
2
            config::enable_stacktrace) {
457
            status._err_msg->_stack = get_stack_trace(1);
458
2
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
459
2
        }
460
2
        return status;
461
    }
462
2.66G
463
    static Status OK() { return {}; }
464
465
0
    template <bool stacktrace = true, typename... Args>
466
0
    static Status FatalError(std::string_view msg, Args&&... args) {
467
0
#ifndef NDEBUG
468
0
        LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...);
469
0
#endif
470
0
        return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...);
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
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_
471
    }
472
473
// default have stacktrace. could disable manually.
474
#define ERROR_CTOR(name, code)                                                       \
475
260k
    template <bool stacktrace = true, typename... Args>                              \
476
260k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
260k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
17
    template <bool stacktrace = true, typename... Args>                              \
476
17
    static Status name(std::string_view msg, Args&&... args) {                       \
477
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
28
    template <bool stacktrace = true, typename... Args>                              \
476
28
    static Status name(std::string_view msg, Args&&... args) {                       \
477
28
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
8
    template <bool stacktrace = true, typename... Args>                              \
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
6
    template <bool stacktrace = true, typename... Args>                              \
476
6
    static Status name(std::string_view msg, Args&&... args) {                       \
477
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
31
    template <bool stacktrace = true, typename... Args>                              \
476
31
    static Status name(std::string_view msg, Args&&... args) {                       \
477
31
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
240
    template <bool stacktrace = true, typename... Args>                              \
476
240
    static Status name(std::string_view msg, Args&&... args) {                       \
477
240
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
4
    template <bool stacktrace = true, typename... Args>                              \
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
3
    template <bool stacktrace = true, typename... Args>                              \
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
16.1k
    template <bool stacktrace = true, typename... Args>                              \
476
16.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
16.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
48.0k
    template <bool stacktrace = true, typename... Args>                              \
476
48.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
48.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
360
    template <bool stacktrace = true, typename... Args>                              \
476
360
    static Status name(std::string_view msg, Args&&... args) {                       \
477
360
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
16
    template <bool stacktrace = true, typename... Args>                              \
476
16
    static Status name(std::string_view msg, Args&&... args) {                       \
477
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
5
    template <bool stacktrace = true, typename... Args>                              \
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
13
    template <bool stacktrace = true, typename... Args>                              \
476
13
    static Status name(std::string_view msg, Args&&... args) {                       \
477
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
8
    template <bool stacktrace = true, typename... Args>                              \
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
458
    template <bool stacktrace = true, typename... Args>                              \
476
458
    static Status name(std::string_view msg, Args&&... args) {                       \
477
458
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
9
    template <bool stacktrace = true, typename... Args>                              \
476
9
    static Status name(std::string_view msg, Args&&... args) {                       \
477
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
4
    template <bool stacktrace = true, typename... Args>                              \
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
31
    template <bool stacktrace = true, typename... Args>                              \
476
31
    static Status name(std::string_view msg, Args&&... args) {                       \
477
31
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
46
    template <bool stacktrace = true, typename... Args>                              \
476
46
    static Status name(std::string_view msg, Args&&... args) {                       \
477
46
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
52.9k
    template <bool stacktrace = true, typename... Args>                              \
476
52.9k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
52.9k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
475
3
    template <bool stacktrace = true, typename... Args>                              \
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_
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_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
5
    template <bool stacktrace = true, typename... Args>                              \
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
17
    template <bool stacktrace = true, typename... Args>                              \
476
17
    static Status name(std::string_view msg, Args&&... args) {                       \
477
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
_ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
19
    template <bool stacktrace = true, typename... Args>                              \
476
19
    static Status name(std::string_view msg, Args&&... args) {                       \
477
19
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
325
    template <bool stacktrace = true, typename... Args>                              \
476
325
    static Status name(std::string_view msg, Args&&... args) {                       \
477
325
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
52
    template <bool stacktrace = true, typename... Args>                              \
476
52
    static Status name(std::string_view msg, Args&&... args) {                       \
477
52
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
6
    template <bool stacktrace = true, typename... Args>                              \
476
6
    static Status name(std::string_view msg, Args&&... args) {                       \
477
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRA30_cNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
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: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
_ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
12.8k
    template <bool stacktrace = true, typename... Args>                              \
476
12.8k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
12.8k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
109
    template <bool stacktrace = true, typename... Args>                              \
476
109
    static Status name(std::string_view msg, Args&&... args) {                       \
477
109
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
385
    template <bool stacktrace = true, typename... Args>                              \
476
385
    static Status name(std::string_view msg, Args&&... args) {                       \
477
385
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_EEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
9
    template <bool stacktrace = true, typename... Args>                              \
476
9
    static Status name(std::string_view msg, Args&&... args) {                       \
477
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
4
    template <bool stacktrace = true, typename... Args>                              \
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_mS2_RiRKmEEES0_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: _ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_3ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
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_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: _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_9FieldTypeE40EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE40EEUt_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
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
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_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status10CorruptionILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status10CorruptionILb1EJiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status10CorruptionILb1EJRjRmRKmS5_S5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmjmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmjmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S2_S8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmjmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRKbRbRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESG_SE_EEES0_St17basic_string_viewIcSC_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSC_SA_EEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v224HierarchicalDataIterator8ReadTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
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
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
125k
    template <bool stacktrace = true, typename... Args>                              \
476
125k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
125k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
3
    template <bool stacktrace = true, typename... Args>                              \
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_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
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7AbortedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
8
    template <bool stacktrace = true, typename... Args>                              \
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
5
    template <bool stacktrace = true, typename... Args>                              \
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13InternalErrorILb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjRKjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
907
    template <bool stacktrace = true, typename... Args>                              \
476
907
    static Status name(std::string_view msg, Args&&... args) {                       \
477
907
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_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: _ZN5doris6Status13InternalErrorILb1EJRmS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
20
    template <bool stacktrace = true, typename... Args>                              \
476
20
    static Status name(std::string_view msg, Args&&... args) {                       \
477
20
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
14
    template <bool stacktrace = true, typename... Args>                              \
476
14
    static Status name(std::string_view msg, Args&&... args) {                       \
477
14
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
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: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiN3orc8TypeKindES4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1.00k
    template <bool stacktrace = true, typename... Args>                              \
476
1.00k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1.00k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
4
    template <bool stacktrace = true, typename... Args>                              \
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
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
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
8
    template <bool stacktrace = true, typename... Args>                              \
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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_
_ZN5doris6Status19MemoryLimitExceededILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
65
    template <bool stacktrace = true, typename... Args>                              \
476
65
    static Status name(std::string_view msg, Args&&... args) {                       \
477
65
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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: _ZN5doris6Status13InternalErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8JniErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
24
    template <bool stacktrace = true, typename... Args>                              \
476
24
    static Status name(std::string_view msg, Args&&... args) {                       \
477
24
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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
475
2
    template <bool stacktrace = true, typename... Args>                              \
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
1
    template <bool stacktrace = true, typename... Args>                              \
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
3
    template <bool stacktrace = true, typename... Args>                              \
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
475
79
    template <bool stacktrace = true, typename... Args>                              \
476
79
    static Status name(std::string_view msg, Args&&... args) {                       \
477
79
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
475
110
    template <bool stacktrace = true, typename... Args>                              \
476
110
    static Status name(std::string_view msg, Args&&... args) {                       \
477
110
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
478
    }
479
480
// default have no stacktrace. could enable manually.
481
#define ERROR_CTOR_NOSTACK(name, code)                                               \
482
5.60M
    template <bool stacktrace = false, typename... Args>                             \
483
5.60M
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5.60M
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
503k
    template <bool stacktrace = false, typename... Args>                             \
483
503k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
503k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
147k
    template <bool stacktrace = false, typename... Args>                             \
483
147k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
147k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
17
    template <bool stacktrace = false, typename... Args>                             \
483
17
    static Status name(std::string_view msg, Args&&... args) {                       \
484
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
7
    template <bool stacktrace = false, typename... Args>                             \
483
7
    static Status name(std::string_view msg, Args&&... args) {                       \
484
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
443
    template <bool stacktrace = false, typename... Args>                             \
483
443
    static Status name(std::string_view msg, Args&&... args) {                       \
484
443
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
231k
    template <bool stacktrace = false, typename... Args>                             \
483
231k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
231k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1.32k
    template <bool stacktrace = false, typename... Args>                             \
483
1.32k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1.32k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
3.78M
    template <bool stacktrace = false, typename... Args>                             \
483
3.78M
    static Status name(std::string_view msg, Args&&... args) {                       \
484
3.78M
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
16
    template <bool stacktrace = false, typename... Args>                             \
483
16
    static Status name(std::string_view msg, Args&&... args) {                       \
484
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
8
    template <bool stacktrace = false, typename... Args>                             \
483
8
    static Status name(std::string_view msg, Args&&... args) {                       \
484
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
268
    template <bool stacktrace = false, typename... Args>                             \
483
268
    static Status name(std::string_view msg, Args&&... args) {                       \
484
268
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
65
    template <bool stacktrace = false, typename... Args>                             \
483
65
    static Status name(std::string_view msg, Args&&... args) {                       \
484
65
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
9
    template <bool stacktrace = false, typename... Args>                             \
483
9
    static Status name(std::string_view msg, Args&&... args) {                       \
484
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
10.9k
    template <bool stacktrace = false, typename... Args>                             \
483
10.9k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
10.9k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
4.35k
    template <bool stacktrace = false, typename... Args>                             \
483
4.35k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
4.35k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
137
    template <bool stacktrace = false, typename... Args>                             \
483
137
    static Status name(std::string_view msg, Args&&... args) {                       \
484
137
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
851
    template <bool stacktrace = false, typename... Args>                             \
483
851
    static Status name(std::string_view msg, Args&&... args) {                       \
484
851
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1.67k
    template <bool stacktrace = false, typename... Args>                             \
483
1.67k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1.67k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
42
    template <bool stacktrace = false, typename... Args>                             \
483
42
    static Status name(std::string_view msg, Args&&... args) {                       \
484
42
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
14
    template <bool stacktrace = false, typename... Args>                             \
483
14
    static Status name(std::string_view msg, Args&&... args) {                       \
484
14
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKnS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKN4wide7integerILm256EiEES6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidJsonPathILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
120
    template <bool stacktrace = false, typename... Args>                             \
483
120
    static Status name(std::string_view msg, Args&&... args) {                       \
484
120
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
10
    template <bool stacktrace = false, typename... Args>                             \
483
10
    static Status name(std::string_view msg, Args&&... args) {                       \
484
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_
Line
Count
Source
482
1.18k
    template <bool stacktrace = false, typename... Args>                             \
483
1.18k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1.18k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
285
    template <bool stacktrace = false, typename... Args>                             \
483
285
    static Status name(std::string_view msg, Args&&... args) {                       \
484
285
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
10
    template <bool stacktrace = false, typename... Args>                             \
483
10
    static Status name(std::string_view msg, Args&&... args) {                       \
484
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
7
    template <bool stacktrace = false, typename... Args>                             \
483
7
    static Status name(std::string_view msg, Args&&... args) {                       \
484
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
482
6
    template <bool stacktrace = false, typename... Args>                             \
483
6
    static Status name(std::string_view msg, Args&&... args) {                       \
484
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
482
18
    template <bool stacktrace = false, typename... Args>                             \
483
18
    static Status name(std::string_view msg, Args&&... args) {                       \
484
18
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT0_
Line
Count
Source
482
6
    template <bool stacktrace = false, typename... Args>                             \
483
6
    static Status name(std::string_view msg, Args&&... args) {                       \
484
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidJsonPathILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidJsonPathILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
8
    template <bool stacktrace = false, typename... Args>                             \
483
8
    static Status name(std::string_view msg, Args&&... args) {                       \
484
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
4
    template <bool stacktrace = false, typename... Args>                             \
483
4
    static Status name(std::string_view msg, Args&&... args) {                       \
484
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT0_
Line
Count
Source
482
3
    template <bool stacktrace = false, typename... Args>                             \
483
3
    static Status name(std::string_view msg, Args&&... args) {                       \
484
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
7
    template <bool stacktrace = false, typename... Args>                             \
483
7
    static Status name(std::string_view msg, Args&&... args) {                       \
484
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
482
6
    template <bool stacktrace = false, typename... Args>                             \
483
6
    static Status name(std::string_view msg, Args&&... args) {                       \
484
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
5
    template <bool stacktrace = false, typename... Args>                             \
483
5
    static Status name(std::string_view msg, Args&&... args) {                       \
484
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
27
    template <bool stacktrace = false, typename... Args>                             \
483
27
    static Status name(std::string_view msg, Args&&... args) {                       \
484
27
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
79
    template <bool stacktrace = false, typename... Args>                             \
483
79
    static Status name(std::string_view msg, Args&&... args) {                       \
484
79
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9EndOfFileILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
16
    template <bool stacktrace = false, typename... Args>                             \
483
16
    static Status name(std::string_view msg, Args&&... args) {                       \
484
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_26TPartialUpdateNewRowPolicy4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
482
14.6k
    template <bool stacktrace = false, typename... Args>                             \
483
14.6k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
14.6k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
389k
    template <bool stacktrace = false, typename... Args>                             \
483
389k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
389k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
9
    template <bool stacktrace = false, typename... Args>                             \
483
9
    static Status name(std::string_view msg, Args&&... args) {                       \
484
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
482
3
    template <bool stacktrace = false, typename... Args>                             \
483
3
    static Status name(std::string_view msg, Args&&... args) {                       \
484
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
9
    template <bool stacktrace = false, typename... Args>                             \
483
9
    static Status name(std::string_view msg, Args&&... args) {                       \
484
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNS_27PRerunFragmentParams_OpcodeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
3
    template <bool stacktrace = false, typename... Args>                             \
483
3
    static Status name(std::string_view msg, Args&&... args) {                       \
484
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
276k
    template <bool stacktrace = false, typename... Args>                             \
483
276k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
276k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlS2_lEEES0_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
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
228k
    template <bool stacktrace = false, typename... Args>                             \
483
228k
    static Status name(std::string_view msg, Args&&... args) {                       \
484
228k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status15InvalidArgumentILb0EJRKhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
2
    template <bool stacktrace = false, typename... Args>                             \
483
2
    static Status name(std::string_view msg, Args&&... args) {                       \
484
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA20_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
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
_ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
482
1
    template <bool stacktrace = false, typename... Args>                             \
483
1
    static Status name(std::string_view msg, Args&&... args) {                       \
484
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
482
7
    template <bool stacktrace = false, typename... Args>                             \
483
7
    static Status name(std::string_view msg, Args&&... args) {                       \
484
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
485
    }
486
487
    ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT)
488
    ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED)
489
    ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED)
490
    ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT)
491
    ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH)
492
    ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE)
493
    ERROR_CTOR(Corruption, CORRUPTION)
494
    ERROR_CTOR(IOError, IO_ERROR)
495
    ERROR_CTOR(NotFound, NOT_FOUND)
496
    ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST)
497
    ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY)
498
    ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR)
499
    ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE)
500
    ERROR_CTOR(InternalError, INTERNAL_ERROR)
501
    ERROR_CTOR(RuntimeError, RUNTIME_ERROR)
502
    ERROR_CTOR(JniError, JNI_ERROR)
503
    ERROR_CTOR_NOSTACK(Cancelled, CANCELLED)
504
    ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED)
505
    ERROR_CTOR(RpcError, THRIFT_RPC_ERROR)
506
    ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT)
507
    ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS)
508
    ERROR_CTOR(Uninitialized, UNINITIALIZED)
509
    ERROR_CTOR(Aborted, ABORTED)
510
    ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR)
511
    ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED)
512
    ERROR_CTOR(HttpError, HTTP_ERROR)
513
    ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN)
514
    ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR)
515
    ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED)
516
    ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR)
517
#undef ERROR_CTOR
518
519
170M
    template <int code>
520
170M
    bool is() const {
521
170M
        return code == _code;
_ZNK5doris6Status2isILi30EEEbv
Line
Count
Source
519
104M
    template <int code>
520
104M
    bool is() const {
521
104M
        return code == _code;
_ZNK5doris6Status2isILi3EEEbv
Line
Count
Source
519
4
    template <int code>
520
4
    bool is() const {
521
4
        return code == _code;
_ZNK5doris6Status2isILin3115EEEbv
Line
Count
Source
519
2.29k
    template <int code>
520
2.29k
    bool is() const {
521
2.29k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv
_ZNK5doris6Status2isILi31EEEbv
Line
Count
Source
519
32.6M
    template <int code>
520
32.6M
    bool is() const {
521
32.6M
        return code == _code;
_ZNK5doris6Status2isILi35EEEbv
Line
Count
Source
519
1
    template <int code>
520
1
    bool is() const {
521
1
        return code == _code;
_ZNK5doris6Status2isILi34EEEbv
Line
Count
Source
519
3
    template <int code>
520
3
    bool is() const {
521
3
        return code == _code;
_ZNK5doris6Status2isILin406EEEbv
Line
Count
Source
519
4.96k
    template <int code>
520
4.96k
    bool is() const {
521
4.96k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv
_ZNK5doris6Status2isILi6EEEbv
Line
Count
Source
519
8
    template <int code>
520
8
    bool is() const {
521
8
        return code == _code;
_ZNK5doris6Status2isILin908EEEbv
Line
Count
Source
519
808
    template <int code>
520
808
    bool is() const {
521
808
        return code == _code;
_ZNK5doris6Status2isILin3002EEEbv
Line
Count
Source
519
11.6k
    template <int code>
520
11.6k
    bool is() const {
521
11.6k
        return code == _code;
_ZNK5doris6Status2isILi33EEEbv
Line
Count
Source
519
30
    template <int code>
520
30
    bool is() const {
521
30
        return code == _code;
_ZNK5doris6Status2isILin2000EEEbv
Line
Count
Source
519
321k
    template <int code>
520
321k
    bool is() const {
521
321k
        return code == _code;
_ZNK5doris6Status2isILin239EEEbv
Line
Count
Source
519
44.8k
    template <int code>
520
44.8k
    bool is() const {
521
44.8k
        return code == _code;
_ZNK5doris6Status2isILi5EEEbv
Line
Count
Source
519
265k
    template <int code>
520
265k
    bool is() const {
521
265k
        return code == _code;
_ZNK5doris6Status2isILin7002EEEbv
Line
Count
Source
519
11.6M
    template <int code>
520
11.6M
    bool is() const {
521
11.6M
        return code == _code;
_ZNK5doris6Status2isILi32EEEbv
Line
Count
Source
519
7.23M
    template <int code>
520
7.23M
    bool is() const {
521
7.23M
        return code == _code;
_ZNK5doris6Status2isILin6004EEEbv
Line
Count
Source
519
1.97k
    template <int code>
520
1.97k
    bool is() const {
521
1.97k
        return code == _code;
_ZNK5doris6Status2isILin7000EEEbv
Line
Count
Source
519
7.60M
    template <int code>
520
7.60M
    bool is() const {
521
7.60M
        return code == _code;
_ZNK5doris6Status2isILin7001EEEbv
Line
Count
Source
519
3.71M
    template <int code>
520
3.71M
    bool is() const {
521
3.71M
        return code == _code;
_ZNK5doris6Status2isILi39EEEbv
Line
Count
Source
519
125k
    template <int code>
520
125k
    bool is() const {
521
125k
        return code == _code;
_ZNK5doris6Status2isILin2010EEEbv
Line
Count
Source
519
228k
    template <int code>
520
228k
    bool is() const {
521
228k
        return code == _code;
_ZNK5doris6Status2isILin808EEEbv
Line
Count
Source
519
135k
    template <int code>
520
135k
    bool is() const {
521
135k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv
_ZNK5doris6Status2isILin6003EEEbv
Line
Count
Source
519
20
    template <int code>
520
20
    bool is() const {
521
20
        return code == _code;
_ZNK5doris6Status2isILin259EEEbv
Line
Count
Source
519
2.88k
    template <int code>
520
2.88k
    bool is() const {
521
2.88k
        return code == _code;
_ZNK5doris6Status2isILi8EEEbv
Line
Count
Source
519
6.22k
    template <int code>
520
6.22k
    bool is() const {
521
6.22k
        return code == _code;
_ZNK5doris6Status2isILi37EEEbv
Line
Count
Source
519
6.22k
    template <int code>
520
6.22k
    bool is() const {
521
6.22k
        return code == _code;
_ZNK5doris6Status2isILi11EEEbv
Line
Count
Source
519
10.1k
    template <int code>
520
10.1k
    bool is() const {
521
10.1k
        return code == _code;
_ZNK5doris6Status2isILi9EEEbv
Line
Count
Source
519
6.22k
    template <int code>
520
6.22k
    bool is() const {
521
6.22k
        return code == _code;
_ZNK5doris6Status2isILi42EEEbv
Line
Count
Source
519
859
    template <int code>
520
859
    bool is() const {
521
859
        return code == _code;
_ZNK5doris6Status2isILi46EEEbv
Line
Count
Source
519
1.90M
    template <int code>
520
1.90M
    bool is() const {
521
1.90M
        return code == _code;
_ZNK5doris6Status2isILi73EEEbv
Line
Count
Source
519
85
    template <int code>
520
85
    bool is() const {
521
85
        return code == _code;
_ZNK5doris6Status2isILin257EEEbv
Line
Count
Source
519
2.05k
    template <int code>
520
2.05k
    bool is() const {
521
2.05k
        return code == _code;
_ZNK5doris6Status2isILin258EEEbv
Line
Count
Source
519
1.03k
    template <int code>
520
1.03k
    bool is() const {
521
1.03k
        return code == _code;
_ZNK5doris6Status2isILi14EEEbv
Line
Count
Source
519
535
    template <int code>
520
535
    bool is() const {
521
535
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv
_ZNK5doris6Status2isILin7311EEEbv
Line
Count
Source
519
142k
    template <int code>
520
142k
    bool is() const {
521
142k
        return code == _code;
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin215EEEbv
522
    }
523
0
524
    void set_code(int code) { _code = code; }
525
2.79G
526
    bool ok() const { return _code == ErrorCode::OK || _code == ErrorCode::FINISHED; }
527
528
    // Convert into TStatus.
529
    void to_thrift(TStatus* status) const;
530
    TStatus to_thrift() const;
531
    void to_protobuf(PStatus* status) const;
532
533
    std::string to_string() const;
534
    std::string to_string_no_stack() const;
535
536
    /// @return A json representation of this status.
537
    std::string to_json() const;
538
212k
539
    int code() const { return _code; }
540
541
    /// Clone this status and add the specified prefix to the message.
542
    ///
543
    /// If this status is OK, then an OK status will be returned.
544
    ///
545
    /// @param [in] msg
546
    ///   The message to prepend.
547
    /// @return A ref to Status object
548
    Status& prepend(std::string_view msg);
549
550
    /// Add the specified suffix to the message.
551
    ///
552
    /// If this status is OK, then an OK status will be returned.
553
    ///
554
    /// @param [in] msg
555
    ///   The message to append.
556
    /// @return A ref to Status object
557
    Status& append(std::string_view msg);
558
559
255M
    // if(!status) or if (status) will use this operator
560
    operator bool() const { return this->ok(); }
561
562
    // Used like if ASSERT_EQ(res, Status::OK())
563
    // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state
564
50.4k
    // ignore error messages during comparison
565
    bool operator==(const Status& st) const { return _code == st._code; }
566
567
15.8M
    // Used like if ASSERT_NE(res, Status::OK())
568
    bool operator!=(const Status& st) const { return _code != st._code; }
569
570
    friend std::ostream& operator<<(std::ostream& ostr, const Status& status);
571
8.45M
572
    std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); }
573
0
574
    std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; }
575
576
    friend io::ObjectStorageStatus convert_to_obj_response(Status st);
577
578
private:
579
    int _code;
580
    struct ErrMsg {
581
        std::string _msg;
582
        std::string _stack;
583
    };
584
    std::unique_ptr<ErrMsg> _err_msg;
585
8.42M
586
8.42M
    std::string code_as_string() const {
587
8.42M
        return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code))
588
8.42M
                               : fmt::format("E{}", (int16_t)_code);
589
    }
590
};
591
592
// There are many thread using status to indicate the cancel state, one thread may update it and
593
// the other thread will read it. Status is not thread safe, for example, if one thread is update it
594
// and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and
595
// it is deconstructed during copy method.
596
// And also we could not use lock, because we need get status frequently to check if it is cancelled.
597
// The default value is ok.
598
class AtomicStatus {
599
7.87M
public:
600
    AtomicStatus() : error_st_(Status::OK()) {}
601
86.2M
602
    bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; }
603
564k
604
    bool update(const Status& new_status) {
605
564k
        // If new status is normal, or the old status is abnormal, then not need update
606
465k
        if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) {
607
465k
            return false;
608
99.4k
        }
609
99.4k
        std::lock_guard l(mutex_);
610
1
        if (error_code_.load(std::memory_order_acquire) != 0) {
611
1
            return false;
612
99.4k
        }
613
99.4k
        error_st_ = new_status;
614
99.4k
        error_code_.store(static_cast<int16_t>(new_status.code()), std::memory_order_release);
615
99.4k
        return true;
616
    }
617
1.02k
618
1.02k
    void reset() {
619
1.02k
        std::lock_guard l(mutex_);
620
1.02k
        error_st_ = Status::OK();
621
1.02k
        error_code_ = 0;
622
    }
623
624
    // will copy a new status object to avoid concurrency
625
8.53M
    // This stauts could only be called when ok==false
626
8.53M
    Status status() const {
627
8.53M
        std::lock_guard l(mutex_);
628
8.53M
        return error_st_;
629
    }
630
631
    AtomicStatus(const AtomicStatus&) = delete;
632
    void operator=(const AtomicStatus&) = delete;
633
634
private:
635
    std::atomic_int16_t error_code_ = 0;
636
    Status error_st_;
637
    // mutex's lock is not a const method, but we will use this mutex in
638
    // some const method, so that it should be mutable.
639
    mutable std::mutex mutex_;
640
};
641
8.40M
642
8.40M
inline std::ostream& operator<<(std::ostream& ostr, const Status& status) {
643
8.40M
    ostr << '[' << status.code_as_string() << ']';
644
8.40M
    ostr << status.msg();
645
2.69k
    if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) {
646
2.69k
        ostr << '\n' << status._err_msg->_stack;
647
8.40M
    }
648
8.40M
    return ostr;
649
}
650
8.35M
651
8.35M
inline std::string Status::to_string() const {
652
8.35M
    std::stringstream ss;
653
8.35M
    ss << *this;
654
8.35M
    return ss.str();
655
}
656
531
657
531
inline std::string Status::to_string_no_stack() const {
658
531
    return fmt::format("[{}]{}", code_as_string(), msg());
659
}
660
661
// some generally useful macros
662
1.93G
#define RETURN_IF_ERROR(stmt)           \
663
1.93G
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
891
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
880
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
880
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
880
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
535
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
643
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
937
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.84k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.00k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
368
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.28k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.31k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.36k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.14k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.22k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.15k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.18k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.08k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.11k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
4.60k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.19k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.13k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.20k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
1.15k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
1.18k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
169
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
322
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
210
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
4.36k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
483
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
387
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
777
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
308
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
2.07k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.02k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
1.37k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
609
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
2.61k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
1.96k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
861
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
294
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
721
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.48k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
986
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
774
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
259
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
700
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.09k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
594
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
498
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
303
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
59
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
2.03k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
62
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
156
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
59
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.27k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
62
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
33.6k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
312
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
247
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
103k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
296
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
148
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
225
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
284
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
234
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
339
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
260
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
361
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
234
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
296
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
10.4k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
112
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
154
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
9.20k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
259
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
321
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
4.86M
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
294
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
413
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
312M
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
819
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
969
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
336
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
168
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
2.64k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
1.75k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
663
78
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
556
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
860
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
483
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.29k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.47k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
1.06k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
796
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
427
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.26k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.45k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
1.06k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
540
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.04k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
886
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
5.01k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
146
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
293
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
7.10k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.21k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
201
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
66.5k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
210
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
521
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
800
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
2.49k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
5.08k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.23k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
126
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
133
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
9.20k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
290
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
290
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
21.0k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
210
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
210
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
160k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
518
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
518
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
119
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
105
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
7.61k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
626
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
663
59
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
407
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
262k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
550
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
16.5k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
31.4M
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
979
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
47.2k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.00k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
846
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
1.36k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
2.26k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
2.47k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
2.01k
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
44
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
14
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
1.75k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
488
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
139
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
293
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
446
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
118
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
230
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
562
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
124
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
248
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
254
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
305
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
665
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
663
184
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
663
296
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
663
610
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.18k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
126
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
133
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
3.54k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
290
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
290
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
1.96k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
210
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
210
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
7.39k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
518
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
518
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
105
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
105
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
2.28k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
407
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
663
59
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
407
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
3.50k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
189
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
231
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
663
13.3k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
663
487
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
663
549
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
3.28k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
393
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
1.07k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
663
3.60k
    do {                                \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
663
847
    do {                                \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESL_IbLb0EEEEDaSH_SI_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_EEDaSH_SI_
Line
Count
Source
663
1.58k
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_SG_EEDaSA_SB_SC_
Line
Count
Source
663
5
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_SF_IbLb1EEEEDaSA_SB_SC_
Line
Count
Source
663
4
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESF_IbLb1EESG_EEDaSA_SB_SC_
Line
Count
Source
663
4
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESF_IbLb1EESH_EEDaSA_SB_SC_
Line
Count
Source
663
20
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESF_IbLb0EESH_EEDaSA_SB_SC_
Line
Count
Source
663
4
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESF_IbLb0EESG_EEDaSA_SB_SC_
Line
Count
Source
663
4
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_SF_IbLb0EEEEDaSA_SB_SC_
Line
Count
Source
663
4
    do {                                \
Unexecuted instantiation: _ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_SG_EEDaSA_SB_SC_
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_EEDaSA_SB_
Line
Count
Source
663
31
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESE_IbLb1EEEEDaSA_SB_
Line
Count
Source
663
39
    do {                                \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESE_IbLb0EEEEDaSA_SB_
Line
Count
Source
663
21
    do {                                \
Unexecuted instantiation: _ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_EEDaSA_SB_
Unexecuted instantiation: function_java_udf.cpp:_ZZN5doris16JavaFunctionCall5closeEPNS_15FunctionContextENS1_18FunctionStateScopeEENK3$_0clEv
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv
Line
Count
Source
663
10
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv
Line
Count
Source
663
6
    do {                                \
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv
Line
Count
Source
663
6
    do {                                \
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
beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEbPNS_20OlapReaderStatisticsEENK3$_0clEv
Line
Count
Source
663
929k
    do {                                \
segment.cpp:_ZZN5doris10segment_v27Segment18new_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_13IndexIteratorESt14default_deleteISC_EEENK3$_0clEv
Line
Count
Source
663
21.0k
    do {                                \
segment_writer.cpp:_ZZN5doris10segment_v213SegmentWriter13_write_footerEvENK3$_0clERKSt6vectorINS_5SliceESaIS4_EE
Line
Count
Source
663
26.3k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
663
144k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15seek_to_ordinalEmENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
663
99.0k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS5_EEPbE3$_0EENS_6StatusEOT_S9_mENKUlRNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESJ_
Line
Count
Source
663
99.0k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_7IColumnEE11mutable_ptrIS6_EEE3$_0EENS_6StatusEOT_SA_mENKUlRNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESJ_
Line
Count
Source
663
367k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15init_prefetcherERKNS0_21SegmentPrefetchParamsEENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
663
126k
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15_init_containerERNS_3COWINS_7IColumnEE11mutable_ptrIS3_EEmiENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
663
1.06M
    do {                                \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator32_init_null_map_and_clear_columnsERNS_3COWINS_7IColumnEE11mutable_ptrIS3_EES7_mENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
663
93.3k
    do {                                \
_ZZN5doris10segment_v225SparseColumnMergeIterator10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS4_EEPbENKUlPNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESE_
Line
Count
Source
663
1.01k
    do {                                \
_ZZN5doris10segment_v225SparseColumnMergeIterator14read_by_rowidsEPKjmRNS_3COWINS_7IColumnEE11mutable_ptrIS5_EEENKUlPNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESE_
Line
Count
Source
663
485
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v216VariantDocWriter11append_dataEPKNS_12TabletColumnERKNS_13ColumnVariantEmPNS_22OlapBlockDataConvertorEENK3$_0clERNS0_12_GLOBAL__N_119SubcolumnWriteEntryERi
Line
Count
Source
663
90.2k
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v216VariantDocWriter11append_dataEPKNS_12TabletColumnERKNS_13ColumnVariantEmPNS_22OlapBlockDataConvertorEENK3$_1clEi
Line
Count
Source
663
2.24k
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v223VariantColumnWriterImpl6finishEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
663
28.9k
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v223VariantColumnWriterImpl10write_dataEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
663
28.9k
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v223VariantColumnWriterImpl19write_ordinal_indexEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
663
28.9k
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v223VariantDocCompactWriter8finalizeEvENK3$_0clERNS0_12_GLOBAL__N_119SubcolumnWriteEntryERi
Line
Count
Source
663
574
    do {                                \
variant_column_writer_impl.cpp:_ZZN5doris10segment_v223VariantDocCompactWriter8finalizeEvENK3$_1clEi
Line
Count
Source
663
438
    do {                                \
vertical_segment_writer.cpp:_ZZN5doris10segment_v221VerticalSegmentWriter13_write_footerEvENK3$_0clERKSt6vectorINS_5SliceESaIS4_EE
Line
Count
Source
663
286k
    do {                                \
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
spill_stream_manager.cpp:_ZZN5doris18SpillStreamManager4initEvENK3$_0clEv
Line
Count
Source
663
75
    do {                                \
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv
Line
Count
Source
663
25
    do {                                \
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEv
Line
Count
Source
663
25.1k
    do {                                \
rowid_fetcher.cpp:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEvENKUlvE_clEv
Line
Count
Source
663
4.21k
    do {                                \
rowid_fetcher.cpp:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEvENKUlvE0_clEv
Line
Count
Source
663
4.07k
    do {                                \
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEERKSt6vectorIjSaIjEERSA_INS_14SlotDescriptorESaISF_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSQ_SQ_SQ_RSt13unordered_mapINS_6SegKeyENS_7SegItemENS_12HashOfSegKeyESt8equal_toISS_ESaISt4pairIKSS_ST_EEERSR_INS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESV_IS13_ESaISX_IKS13_S14_EEERNS_5BlockEENK3$_3clEv
Line
Count
Source
663
2.87k
    do {                                \
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEERKSt6vectorIjSaIjEERSA_INS_14SlotDescriptorESaISF_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSQ_SQ_SQ_RSt13unordered_mapINS_6SegKeyENS_7SegItemENS_12HashOfSegKeyESt8equal_toISS_ESaISt4pairIKSS_ST_EEERSR_INS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESV_IS13_ESaISX_IKS13_S14_EEERNS_5BlockEENK3$_4clEv
Line
Count
Source
663
4.42k
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_0clB5cxx11Ev
Line
Count
Source
663
638
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_1clB5cxx11Ev
Line
Count
Source
663
638
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_2clB5cxx11Ev
Line
Count
Source
663
916
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_3clB5cxx11Ev
Line
Count
Source
663
916
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS_5BlockERKNS_23ExternalFileMappingInfoEPlSF_ENK3$_0clEv
Line
Count
Source
663
44.8k
    do {                                \
file_scanner.cpp:_ZZN5doris11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS_5BlockERKNS_23ExternalFileMappingInfoEPlSF_ENK3$_1clEv
Line
Count
Source
663
81.1k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_
Line
Count
Source
663
23.8k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_
Line
Count
Source
663
3.06k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_
Line
Count
Source
663
655k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_
Line
Count
Source
663
798k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_
Line
Count
Source
663
47.4k
    do {                                \
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE8EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE9EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_
Line
Count
Source
663
20
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_
Line
Count
Source
663
4.25k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_
Line
Count
Source
663
3.84M
    do {                                \
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_
Line
Count
Source
663
90
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_
Line
Count
Source
663
28.9k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_
Line
Count
Source
663
130
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_
Line
Count
Source
663
27.7k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE42EEEEEDaOT_
Line
Count
Source
663
26.1k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_
Line
Count
Source
663
1.56k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_
Line
Count
Source
663
17.2k
    do {                                \
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_
Line
Count
Source
663
5.63k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_
Line
Count
Source
663
6.79k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_
Line
Count
Source
663
15.8k
    do {                                \
olap_scan_operator.cpp:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_
Line
Count
Source
663
7.25k
    do {                                \
meta_scanner.cpp:_ZZN5doris11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
6.63k
    do {                                \
csv_reader.cpp:_ZZN5doris9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Line
Count
Source
663
136
    do {                                \
csv_reader.cpp:_ZZN5doris9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Line
Count
Source
663
136
    do {                                \
csv_reader.cpp:_ZZN5doris9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Line
Count
Source
663
594
    do {                                \
csv_reader.cpp:_ZZN5doris9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Line
Count
Source
663
1.79k
    do {                                \
new_json_reader.cpp:_ZZZN5doris13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES2_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESA_EEENKUlvE_clB5cxx11Ev
Line
Count
Source
663
3
    do {                                \
new_json_reader.cpp:_ZZZN5doris13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES2_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESA_EEENKUlvE0_clB5cxx11Ev
Line
Count
Source
663
3
    do {                                \
new_json_reader.cpp:_ZZN5doris13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS_5BlockEmPbENK3$_0clB5cxx11Ev
Line
Count
Source
663
4
    do {                                \
new_json_reader.cpp:_ZZN5doris13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS_5BlockEmPbENK3$_1clB5cxx11Ev
Line
Count
Source
663
4
    do {                                \
new_json_reader.cpp:_ZZN5doris13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_PbENK3$_0clB5cxx11Ev
Line
Count
Source
663
318
    do {                                \
new_json_reader.cpp:_ZZN5doris13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_PbENK3$_1clB5cxx11Ev
Line
Count
Source
663
106
    do {                                \
async_result_writer.cpp:_ZZN5doris17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv
Line
Count
Source
663
244k
    do {                                \
autoinc_buffer.cpp:_ZZN5doris15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv
Line
Count
Source
663
255
    do {                                \
vrow_distribution.cpp:_ZZN5doris16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
174
    do {                                \
vrow_distribution.cpp:_ZZN5doris16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
19
    do {                                \
vtablet_finder.cpp:_ZZN5doris16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS7_EERS5_IjSaIjEERS5_IbSaIbEEPSC_ENK3$_0clB5cxx11Ev
Line
Count
Source
663
662
    do {                                \
vtablet_finder.cpp:_ZZN5doris16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS7_EERS5_IjSaIjEERS5_IbSaIbEEPSC_ENK3$_1clB5cxx11Ev
Line
Count
Source
663
662
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
663
1.32k
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
663
56
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
18
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
12
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
142
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
52
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES7_
Line
Count
Source
663
8
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
663
18
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
663
12
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
2
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
2
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
Line
Count
Source
663
2
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
663
872
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
663
16
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
24
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
8
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
54
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
8
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
663
24
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
4
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
2
    do {                                \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
Line
Count
Source
663
2
    do {                                \
_ZZN5doris21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
663
4
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
663
4.66k
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
663
70
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
64
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
20
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
424
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
216
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
28
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES8_
Line
Count
Source
663
64
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
663
14
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
663
68
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
14
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
12
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
Line
Count
Source
663
2
    do {                                \
_ZZN5doris18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
663
4.72k
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
663
48
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
64
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
20
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
212
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
20
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Line
Count
Source
663
28
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES8_
Line
Count
Source
663
20
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
663
4
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
663
14
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
32
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
14
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
6
    do {                                \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
Line
Count
Source
663
2
    do {                                \
_ZZN5doris18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
663
4
    do {                                \
task_scheduler.cpp:_ZZN5doris13TaskScheduler5startEvENK3$_0clEv
Line
Count
Source
663
3.30k
    do {                                \
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
663
8.71M
    do {                                \
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv
Line
Count
Source
663
7
    do {                                \
stream_load.cpp:_ZZN5doris16StreamLoadAction7_handleESt10shared_ptrINS_17StreamLoadContextEEPNS_11HttpRequestEENK3$_0clES3_
Line
Count
Source
663
21
    do {                                \
stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
2.22k
    do {                                \
http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
134
    do {                                \
load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv
Line
Count
Source
663
446
    do {                                \
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_0clEPNS_15BaseDeltaWriterE
Line
Count
Source
663
115k
    do {                                \
group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_10DependencyEESB_ENK3$_0clEv
Line
Count
Source
663
228
    do {                                \
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_10DependencyEESB_ENK3$_0clEvENKUlvE_clEv
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
Unexecuted instantiation: wal_writer.cpp:_ZZN5doris16determine_wal_fsEllRSt10shared_ptrINS_2io10FileSystemEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv
Line
Count
Source
663
20
    do {                                \
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv
Line
Count
Source
663
456
    do {                                \
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
9
    do {                                \
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe10exec_plansEPNS_7ExecEnvERKSt6vectorINS_23TPipelineFragmentParamsESaIS5_EEENK3$_0clEPNS_12RuntimeStateEPNS_6StatusE
Line
Count
Source
663
92
    do {                                \
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
2.24k
    do {                                \
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor14pre_commit_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
54
    do {                                \
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
1.92k
    do {                                \
schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv
Line
Count
Source
663
76.0k
    do {                                \
Unexecuted instantiation: schema_scanner.cpp:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv
schema_scanner.cpp:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv
Line
Count
Source
663
12.2k
    do {                                \
schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
13
    do {                                \
schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
614
    do {                                \
schema_database_properties_scanner.cpp:_ZZN5doris31SchemaDatabasePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
604
    do {                                \
schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
794
    do {                                \
schema_view_dependency_scanner.cpp:_ZZN5doris27SchemaViewDependencyScanner34_get_view_dependency_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
8
    do {                                \
schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
13
    do {                                \
schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
26
    do {                                \
schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
663
8
    do {                                \
Unexecuted instantiation: cloud_meta_mgr.cpp:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESF_
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
663
1
    do {                                \
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
663
1
    do {                                \
664
1.93G
        Status _status_ = (stmt);       \
665
588k
        if (UNLIKELY(!_status_.ok())) { \
666
588k
            return _status_;            \
667
1.93G
        }                               \
668
    } while (false)
669
670
7.11M
#define PROPAGATE_FALSE(stmt)                     \
671
7.11M
    do {                                          \
672
97.1k
        if (UNLIKELY(!static_cast<bool>(stmt))) { \
673
97.1k
            return false;                         \
674
7.11M
        }                                         \
675
    } while (false)
676
677
14.4M
#define THROW_IF_ERROR(stmt)            \
678
14.4M
    do {                                \
679
14.4M
        Status _status_ = (stmt);       \
680
6
        if (UNLIKELY(!_status_.ok())) { \
681
6
            throw Exception(_status_);  \
682
14.4M
        }                               \
683
    } while (false)
684
685
369k
#define RETURN_IF_STATUS_ERROR(status, stmt) \
686
369k
    do {                                     \
687
369k
        status = (stmt);                     \
688
0
        if (UNLIKELY(!status.ok())) {        \
689
0
            return;                          \
690
369k
        }                                    \
691
    } while (false)
692
693
7
#define EXIT_IF_ERROR(stmt)             \
694
7
    do {                                \
695
7
        Status _status_ = (stmt);       \
696
0
        if (UNLIKELY(!_status_.ok())) { \
697
0
            LOG(ERROR) << _status_;     \
698
0
            exit(1);                    \
699
7
        }                               \
700
    } while (false)
701
702
19.1k
#define RETURN_FALSE_IF_ERROR(stmt)   \
703
19.1k
    do {                              \
704
19.1k
        Status status = (stmt);       \
705
1
        if (UNLIKELY(!status.ok())) { \
706
1
            return false;             \
707
19.1k
        }                             \
708
    } while (false)
709
710
/// @brief Emit a warning if @c to_call returns a bad status.
711
1.09M
#define WARN_IF_ERROR(to_call, warning_prefix)              \
712
1.09M
    do {                                                    \
713
1.09M
        Status _s = (to_call);                              \
714
38
        if (UNLIKELY(!_s.ok())) {                           \
715
38
            LOG(WARNING) << (warning_prefix) << ": " << _s; \
716
1.09M
        }                                                   \
717
    } while (false);
718
719
1.50M
#define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix)       \
720
1.50M
    do {                                                           \
721
1.50M
        Status _s = (stmt);                                        \
722
3
        if (UNLIKELY(!_s.ok())) {                                  \
723
3
            LOG(WARNING) << (warning_prefix) << ", error: " << _s; \
724
3
            return _s;                                             \
725
1.50M
        }                                                          \
726
    } while (false);
727
728
template <typename T>
729
using Result = expected<T, Status>;
730
731
using ResultError = unexpected<Status>;
732
733
4.14M
#define RETURN_IF_ERROR_RESULT(stmt)                \
734
4.14M
    do {                                            \
cloud_tablet.cpp:_ZZNK5doris11CloudTablet41capture_versions_with_freshness_toleranceERKNS_7VersionERKNS_16CaptureRowsetOpsEENK3$_0clEll
Line
Count
Source
734
69
    do {                                            \
cloud_tablet.cpp:_ZZNK5doris11CloudTablet41capture_versions_with_freshness_toleranceERKNS_7VersionERKNS_16CaptureRowsetOpsEENK3$_1clEll
Line
Count
Source
734
57
    do {                                            \
735
4.14M
        Status _status_ = (stmt);                   \
736
21
        if (UNLIKELY(!_status_.ok())) {             \
737
21
            return unexpected(std::move(_status_)); \
738
4.14M
        }                                           \
739
    } while (false)
740
741
51.9M
#define DORIS_TRY(stmt)                              \
742
51.9M
    ({                                               \
scanner_context.cpp:_ZZN5doris14ScannerContext4initEvENK3$_0clEv
Line
Count
Source
742
2.89M
    ({                                               \
_ZZN5doris35TaskExecutorSimplifiedScanScheduler16submit_scan_taskENS_18SimplifiedScanTaskERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEENKUlvE_clEv
Line
Count
Source
742
14.5k
    ({                                               \
743
51.9M
        auto&& try_res = (stmt);                     \
744
51.9M
        using T = std::decay_t<decltype(try_res)>;   \
745
130k
        if (!try_res.has_value()) [[unlikely]] {     \
746
130k
            return std::forward<T>(try_res).error(); \
747
51.9M
        }                                            \
748
51.7M
        std::forward<T>(try_res).value();            \
749
    });
750
751
#define TEST_TRY(stmt)                                                                          \
752
    ({                                                                                          \
753
        auto&& res = (stmt);                                                                    \
754
        using T = std::decay_t<decltype(res)>;                                                  \
755
        if (!res.has_value()) [[unlikely]] {                                                    \
756
            ASSERT_TRUE(res.has_value()) << "Expected success, but got error: " << res.error(); \
757
        }                                                                                       \
758
        std::forward<T>(res).value();                                                           \
759
    })
760
761
#define TEST_RESULT_ERROR(stmt)                                                                   \
762
5.68k
    ({                                                                                            \
763
5.68k
        auto&& _result_ = (stmt);                                                                 \
764
0
        using _result_t = std::decay_t<decltype(_result_)>;                                       \
765
0
        if (_result_.has_value()) [[unlikely]] {                                                  \
766
5.68k
            ASSERT_FALSE(_result_.has_value()) << "Expected ResultError, but got success result"; \
767
        }                                                                                         \
768
        std::forward<_result_t>(_result_).error();                                                \
769
    })
770
771
// core in Debug mode, exception in Release mode.
772
#define DORIS_CHECK(stmt)                                                                \
773
    do {                                                                                 \
774
270
        if (!static_cast<bool>(stmt)) [[unlikely]] {                                     \
775
270
            throw Exception(Status::FatalError(fmt::format("Check failed: {}", #stmt))); \
776
270
        }                                                                                \
777
    } while (false)
778
779
269
} // namespace doris
780
269
781
269
// specify formatter for Status
782
template <>
783
struct fmt::formatter<doris::Status> {
784
    template <typename ParseContext>
785
    constexpr auto parse(ParseContext& ctx) {
786
        return ctx.begin();
787
    }
788
789
    template <typename FormatContext>
790
    auto format(doris::Status const& status, FormatContext& ctx) {
791
        return fmt::format_to(ctx.out(), "{}", status.to_string());
792
    }
793
};