Coverage Report

Created: 2026-09-03 23:55

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 <glog/logging.h>
9
10
#include <cstdint>
11
#include <iostream>
12
#include <memory>
13
#include <string>
14
#include <string_view>
15
#include <type_traits>
16
#include <utility>
17
18
#include "common/check.h"         // IWYU pragma: export
19
#include "common/compiler_util.h" // IWYU pragma: keep
20
#include "common/config.h"
21
#include "common/expected.h"
22
#include "util/stack_util.h"
23
24
namespace doris {
25
26
class Status;
27
28
class PStatus;
29
class TStatus;
30
31
namespace ErrorCode {
32
33
// E thrift_error_name, thrift_error_code (must match Status.thrift; the pairing
34
// is enforced by static_asserts in status.cpp), print_stacktrace
35
#define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError)            \
36
8
    TStatusError(PUBLISH_TIMEOUT, 14, false);                 \
37
8
    TStatusError(MEM_ALLOC_FAILED, 11, true);                 \
38
8
    TStatusError(BUFFER_ALLOCATION_FAILED, 12, true);         \
39
8
    TStatusError(INVALID_ARGUMENT, 33, false);                \
40
8
    TStatusError(INVALID_JSON_PATH, 47, false);               \
41
8
    TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, 13, true);  \
42
8
    TStatusError(CORRUPTION, 32, true);                       \
43
8
    TStatusError(IO_ERROR, 34, true);                         \
44
8
    TStatusError(NOT_FOUND, 31, true);                        \
45
8
    TStatusError(ALREADY_EXIST, 35, true);                    \
46
8
    TStatusError(DIRECTORY_NOT_EMPTY, 40, true);              \
47
8
    TStatusError(NOT_IMPLEMENTED_ERROR, 3, false);            \
48
8
    TStatusError(END_OF_FILE, 30, false);                     \
49
8
    TStatusError(INTERNAL_ERROR, 6, true);                    \
50
8
    TStatusError(RUNTIME_ERROR, 4, true);                     \
51
8
    TStatusError(JNI_ERROR, 48, true);                        \
52
8
    TStatusError(CANCELLED, 1, false);                        \
53
8
    TStatusError(ANALYSIS_ERROR, 2, false);                   \
54
8
    TStatusError(MEM_LIMIT_EXCEEDED, 5, false);               \
55
8
    TStatusError(THRIFT_RPC_ERROR, 7, true);                  \
56
8
    TStatusError(TIMEOUT, 8, true);                           \
57
8
    TStatusError(LIMIT_REACH, 9, false);                      \
58
8
    TStatusError(TOO_MANY_TASKS, 16, true);                   \
59
8
    TStatusError(UNINITIALIZED, 42, false);                   \
60
8
    TStatusError(INCOMPLETE, 44, false);                      \
61
8
    TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, 45, false); \
62
8
    TStatusError(ABORTED, 39, false);                         \
63
8
    TStatusError(DATA_QUALITY_ERROR, 46, false);              \
64
8
    TStatusError(LABEL_ALREADY_EXISTS, 15, true);             \
65
8
    TStatusError(NOT_AUTHORIZED, 38, true);                   \
66
8
    TStatusError(BINLOG_DISABLE, 60, false);                  \
67
8
    TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, 61, false);       \
68
8
    TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, 62, false);       \
69
8
    TStatusError(BINLOG_NOT_FOUND_DB, 63, false);             \
70
8
    TStatusError(BINLOG_NOT_FOUND_TABLE, 64, false);          \
71
8
    TStatusError(NETWORK_ERROR, 36, false);                   \
72
8
    TStatusError(ILLEGAL_STATE, 37, false);                   \
73
8
    TStatusError(SNAPSHOT_NOT_EXIST, 70, true);               \
74
8
    TStatusError(HTTP_ERROR, 71, true);                       \
75
8
    TStatusError(TABLET_MISSING, 72, true);                   \
76
8
    TStatusError(NOT_MASTER, 73, true);                       \
77
8
    TStatusError(OBTAIN_LOCK_FAILED, 74, false);              \
78
8
    TStatusError(SNAPSHOT_EXPIRED, 75, false);                \
79
8
    TStatusError(DELETE_BITMAP_LOCK_ERROR, 100, false);       \
80
8
    TStatusError(SC_COMPACTION_CONFLICT, 101, false);         \
81
8
    TStatusError(FINISHED, 76, false);
82
// E error_name, error_code, print_stacktrace
83
#define APPLY_FOR_OLAP_ERROR_CODES(E)                        \
84
8
    E(OK, 0, false);                                         \
85
8
    E(CALL_SEQUENCE_ERROR, -202, true);                      \
86
8
    E(BUFFER_OVERFLOW, -204, true);                          \
87
8
    E(CONFIG_ERROR, -205, true);                             \
88
8
    E(INIT_FAILED, -206, true);                              \
89
8
    E(INVALID_SCHEMA, -207, true);                           \
90
8
    E(CHECKSUM_ERROR, -208, true);                           \
91
8
    E(SIGNATURE_ERROR, -209, true);                          \
92
8
    E(CATCH_EXCEPTION, -210, true);                          \
93
8
    E(PARSE_PROTOBUF_ERROR, -211, true);                     \
94
8
    E(SERIALIZE_PROTOBUF_ERROR, -212, true);                 \
95
8
    E(WRITE_PROTOBUF_ERROR, -213, true);                     \
96
8
    E(VERSION_NOT_EXIST, -214, false);                       \
97
8
    E(TABLE_NOT_FOUND, -215, true);                          \
98
8
    E(TRY_LOCK_FAILED, -216, false);                         \
99
8
    E(EXCEEDED_LIMIT, -217, false);                          \
100
8
    E(OUT_OF_BOUND, -218, false);                            \
101
8
    E(INVALID_ROOT_PATH, -222, true);                        \
102
8
    E(NO_AVAILABLE_ROOT_PATH, -223, true);                   \
103
8
    E(CHECK_LINES_ERROR, -224, true);                        \
104
8
    E(INVALID_CLUSTER_INFO, -225, true);                     \
105
8
    E(TRANSACTION_NOT_EXIST, -226, false);                   \
106
8
    E(DISK_FAILURE, -227, true);                             \
107
8
    E(TRANSACTION_ALREADY_COMMITTED, -228, false);           \
108
8
    E(TRANSACTION_ALREADY_VISIBLE, -229, false);             \
109
8
    E(VERSION_ALREADY_MERGED, -230, true);                   \
110
8
    E(LZO_DISABLED, -231, true);                             \
111
8
    E(DISK_REACH_CAPACITY_LIMIT, -232, true);                \
112
8
    E(TOO_MANY_TRANSACTIONS, -233, false);                   \
113
8
    E(INVALID_SNAPSHOT_VERSION, -234, true);                 \
114
8
    E(TOO_MANY_VERSION, -235, false);                        \
115
8
    E(NOT_INITIALIZED, -236, true);                          \
116
8
    E(ALREADY_CANCELLED, -237, false);                       \
117
8
    E(TOO_MANY_SEGMENTS, -238, false);                       \
118
8
    E(ALREADY_CLOSED, -239, false);                          \
119
8
    E(SERVICE_UNAVAILABLE, -240, true);                      \
120
8
    E(NEED_SEND_AGAIN, -241, false);                         \
121
8
    E(OS_ERROR, -242, true);                                 \
122
8
    E(DIR_NOT_EXIST, -243, true);                            \
123
8
    E(CREATE_FILE_ERROR, -245, true);                        \
124
8
    E(STL_ERROR, -246, true);                                \
125
8
    E(MUTEX_ERROR, -247, true);                              \
126
8
    E(PTHREAD_ERROR, -248, true);                            \
127
8
    E(UB_FUNC_ERROR, -250, true);                            \
128
8
    E(COMPRESS_ERROR, -251, true);                           \
129
8
    E(DECOMPRESS_ERROR, -252, true);                         \
130
8
    E(FILE_ALREADY_EXIST, -253, true);                       \
131
8
    E(BAD_CAST, -254, true);                                 \
132
8
    E(ARITHMETIC_OVERFLOW_ERRROR, -255, false);              \
133
8
    E(PERMISSION_DENIED, -256, false);                       \
134
8
    E(QUERY_MEMORY_EXCEEDED, -257, false);                   \
135
8
    E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false);          \
136
8
    E(PROCESS_MEMORY_EXCEEDED, -259, false);                 \
137
8
    E(INVALID_INPUT_SYNTAX, -260, false);                    \
138
8
    E(CE_CMD_PARAMS_ERROR, -300, true);                      \
139
8
    E(CE_BUFFER_TOO_SMALL, -301, true);                      \
140
8
    E(CE_CMD_NOT_VALID, -302, true);                         \
141
8
    E(CE_LOAD_TABLE_ERROR, -303, true);                      \
142
8
    E(CE_NOT_FINISHED, -304, true);                          \
143
8
    E(CE_TABLET_ID_EXIST, -305, true);                       \
144
8
    E(TABLE_VERSION_DUPLICATE_ERROR, -400, true);            \
145
8
    E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true);       \
146
8
    E(TABLE_INDEX_VALIDATE_ERROR, -402, true);               \
147
8
    E(TABLE_INDEX_FIND_ERROR, -403, true);                   \
148
8
    E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true);           \
149
8
    E(TABLE_CREATE_META_ERROR, -405, true);                  \
150
8
    E(TABLE_ALREADY_DELETED_ERROR, -406, false);             \
151
8
    E(ENGINE_INSERT_EXISTS_TABLE, -500, true);               \
152
8
    E(ENGINE_DROP_NOEXISTS_TABLE, -501, true);               \
153
8
    E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true);            \
154
8
    E(TABLE_INSERT_DUPLICATION_ERROR, -503, true);           \
155
8
    E(DELETE_VERSION_ERROR, -504, true);                     \
156
8
    E(GC_SCAN_PATH_ERROR, -505, true);                       \
157
8
    E(ENGINE_INSERT_OLD_TABLET, -506, true);                 \
158
8
    E(FETCH_OTHER_ERROR, -600, true);                        \
159
8
    E(FETCH_TABLE_NOT_EXIST, -601, true);                    \
160
8
    E(FETCH_VERSION_ERROR, -602, true);                      \
161
8
    E(FETCH_SCHEMA_ERROR, -603, true);                       \
162
8
    E(FETCH_COMPRESSION_ERROR, -604, true);                  \
163
8
    E(FETCH_CONTEXT_NOT_EXIST, -605, true);                  \
164
8
    E(FETCH_GET_READER_PARAMS_ERR, -606, true);              \
165
8
    E(FETCH_SAVE_SESSION_ERR, -607, true);                   \
166
8
    E(FETCH_MEMORY_EXCEEDED, -608, true);                    \
167
8
    E(READER_IS_UNINITIALIZED, -700, true);                  \
168
8
    E(READER_GET_ITERATOR_ERROR, -701, true);                \
169
8
    E(CAPTURE_ROWSET_READER_ERROR, -702, true);              \
170
8
    E(READER_READING_ERROR, -703, true);                     \
171
8
    E(READER_INITIALIZE_ERROR, -704, true);                  \
172
8
    E(BE_VERSION_NOT_MATCH, -800, true);                     \
173
8
    E(BE_REPLACE_VERSIONS_ERROR, -801, true);                \
174
8
    E(BE_MERGE_ERROR, -802, true);                           \
175
8
    E(CAPTURE_ROWSET_ERROR, -804, true);                     \
176
8
    E(BE_SAVE_HEADER_ERROR, -805, true);                     \
177
8
    E(BE_INIT_OLAP_DATA, -806, true);                        \
178
8
    E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true);              \
179
8
    E(BE_NO_SUITABLE_VERSION, -808, false);                  \
180
8
    E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true);          \
181
8
    E(BE_ERROR_DELETE_ACTION, -811, true);                   \
182
8
    E(BE_SEGMENTS_OVERLAPPING, -812, true);                  \
183
8
    E(PUSH_INIT_ERROR, -900, true);                          \
184
8
    E(PUSH_VERSION_INCORRECT, -902, true);                   \
185
8
    E(PUSH_SCHEMA_MISMATCH, -903, true);                     \
186
8
    E(PUSH_CHECKSUM_ERROR, -904, true);                      \
187
8
    E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true);            \
188
8
    E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true);              \
189
8
    E(PUSH_BUILD_DELTA_ERROR, -907, true);                   \
190
8
    E(PUSH_VERSION_ALREADY_EXIST, -908, false);              \
191
8
    E(PUSH_TABLE_NOT_EXIST, -909, true);                     \
192
8
    E(PUSH_INPUT_DATA_ERROR, -910, true);                    \
193
8
    E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false);          \
194
8
    E(PUSH_BATCH_PROCESS_REMOVED, -912, true);               \
195
8
    E(PUSH_COMMIT_ROWSET, -913, true);                       \
196
8
    E(PUSH_ROWSET_NOT_FOUND, -914, true);                    \
197
8
    E(INDEX_LOAD_ERROR, -1000, true);                        \
198
8
    E(INDEX_CHECKSUM_ERROR, -1002, true);                    \
199
8
    E(INDEX_DELTA_PRUNING, -1003, true);                     \
200
8
    E(DATA_ROW_BLOCK_ERROR, -1100, true);                    \
201
8
    E(DATA_FILE_TYPE_ERROR, -1101, true);                    \
202
8
    E(WRITER_INDEX_WRITE_ERROR, -1200, true);                \
203
8
    E(WRITER_DATA_WRITE_ERROR, -1201, true);                 \
204
8
    E(WRITER_ROW_BLOCK_ERROR, -1202, true);                  \
205
8
    E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true);            \
206
8
    E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true);               \
207
8
    E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true);             \
208
8
    E(HEADER_ADD_VERSION, -1400, true);                      \
209
8
    E(HEADER_DELETE_VERSION, -1401, true);                   \
210
8
    E(HEADER_ADD_PENDING_DELTA, -1402, true);                \
211
8
    E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true);          \
212
8
    E(HEADER_INVALID_FLAG, -1404, true);                     \
213
8
    E(HEADER_LOAD_INVALID_KEY, -1408, true);                 \
214
8
    E(HEADER_LOAD_JSON_HEADER, -1410, true);                 \
215
8
    E(HEADER_INIT_FAILED, -1411, true);                      \
216
8
    E(HEADER_PB_PARSE_FAILED, -1412, true);                  \
217
8
    E(HEADER_HAS_PENDING_DATA, -1413, true);                 \
218
8
    E(SCHEMA_SCHEMA_INVALID, -1500, true);                   \
219
8
    E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true);             \
220
8
    E(ALTER_MULTI_TABLE_ERR, -1600, true);                   \
221
8
    E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true);             \
222
8
    E(ALTER_STATUS_ERR, -1602, true);                        \
223
8
    E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true);     \
224
8
    E(SCHEMA_CHANGE_INFO_INVALID, -1604, true);              \
225
8
    E(QUERY_SPLIT_KEY_ERR, -1605, true);                     \
226
8
    E(DATA_QUALITY_ERR, -1606, false);                       \
227
8
    E(COLUMN_DATA_LOAD_BLOCK, -1700, true);                  \
228
8
    E(COLUMN_DATA_RECORD_INDEX, -1701, true);                \
229
8
    E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true);            \
230
8
    E(COLUMN_DATA_READ_VAR_INT, -1703, true);                \
231
8
    E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true);              \
232
8
    E(COLUMN_READ_STREAM, -1706, true);                      \
233
8
    E(COLUMN_STREAM_NOT_EXIST, -1716, true);                 \
234
8
    E(COLUMN_VALUE_NULL, -1717, true);                       \
235
8
    E(COLUMN_SEEK_ERROR, -1719, true);                       \
236
8
    E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true);            \
237
8
    E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true);             \
238
8
    E(DELETE_INVALID_CONDITION, -1900, true);                \
239
8
    E(DELETE_UPDATE_HEADER_FAILED, -1901, true);             \
240
8
    E(DELETE_SAVE_HEADER_FAILED, -1902, true);               \
241
8
    E(DELETE_INVALID_PARAMETERS, -1903, true);               \
242
8
    E(DELETE_INVALID_VERSION, -1904, true);                  \
243
8
    E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false);         \
244
8
    E(CUMULATIVE_REPEAT_INIT, -2001, true);                  \
245
8
    E(CUMULATIVE_INVALID_PARAMETERS, -2002, true);           \
246
8
    E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true);   \
247
8
    E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \
248
8
    E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true);          \
249
8
    E(CUMULATIVE_MISS_VERSION, -2006, true);                 \
250
8
    E(FULL_NO_SUITABLE_VERSION, -2008, false);               \
251
8
    E(FULL_MISS_VERSION, -2009, true);                       \
252
8
    E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false);         \
253
8
    E(BINLOG_COMPACTION_INVALID_PARAMETERS, -2011, true);    \
254
8
    E(BINLOG_COMPACTION_NO_SUITABLE_VERSION, -2012, false);  \
255
8
    E(META_INVALID_ARGUMENT, -3000, true);                   \
256
8
    E(META_OPEN_DB_ERROR, -3001, true);                      \
257
8
    E(META_KEY_NOT_FOUND, -3002, false);                     \
258
8
    E(META_GET_ERROR, -3003, true);                          \
259
8
    E(META_PUT_ERROR, -3004, true);                          \
260
8
    E(META_ITERATOR_ERROR, -3005, true);                     \
261
8
    E(META_DELETE_ERROR, -3006, true);                       \
262
8
    E(META_ALREADY_EXIST, -3007, true);                      \
263
8
    E(ROWSET_WRITER_INIT, -3100, true);                      \
264
8
    E(ROWSET_SAVE_FAILED, -3101, true);                      \
265
8
    E(ROWSET_GENERATE_ID_FAILED, -3102, true);               \
266
8
    E(ROWSET_DELETE_FILE_FAILED, -3103, true);               \
267
8
    E(ROWSET_BUILDER_INIT, -3104, true);                     \
268
8
    E(ROWSET_TYPE_NOT_FOUND, -3105, true);                   \
269
8
    E(ROWSET_ALREADY_EXIST, -3106, true);                    \
270
8
    E(ROWSET_CREATE_READER, -3107, true);                    \
271
8
    E(ROWSET_INVALID, -3108, true);                          \
272
8
    E(ROWSET_READER_INIT, -3110, true);                      \
273
8
    E(ROWSET_INVALID_STATE_TRANSITION, -3112, true);         \
274
8
    E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true);           \
275
8
    E(ROWSET_ADD_MIGRATION_V2, -3114, true);                 \
276
8
    E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false);         \
277
8
    E(ROWSET_RENAME_FILE_FAILED, -3116, false);              \
278
8
    E(SEGCOMPACTION_INIT_READER, -3117, false);              \
279
8
    E(SEGCOMPACTION_INIT_WRITER, -3118, false);              \
280
8
    E(SEGCOMPACTION_FAILED, -3119, false);                   \
281
8
    E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true);             \
282
8
    E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true);      \
283
8
    E(INDEX_INVALID_PARAMETERS, -6000, false);               \
284
8
    E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false);           \
285
8
    E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false);           \
286
8
    E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false);          \
287
8
    E(INVERTED_INDEX_BYPASS, -6004, false);                  \
288
8
    E(INVERTED_INDEX_NO_TERMS, -6005, false);                \
289
8
    E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true);       \
290
8
    E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false);        \
291
8
    E(INVERTED_INDEX_BUILD_WAITTING, -6008, false);          \
292
8
    E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false);         \
293
8
    E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false);        \
294
8
    E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false);          \
295
8
    E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false);          \
296
8
    E(INVERTED_INDEX_SNII_NOT_FOUND, -6013, false);          \
297
8
    E(KEY_NOT_FOUND, -7000, false);                          \
298
8
    E(KEY_ALREADY_EXISTS, -7001, false);                     \
299
8
    E(ENTRY_NOT_FOUND, -7002, false);                        \
300
8
    E(NEW_ROWS_IN_PARTIAL_UPDATE, -7003, false);             \
301
8
    E(INVALID_TABLET_STATE, -7211, false);                   \
302
8
    E(ROWSETS_EXPIRED, -7311, false);                        \
303
8
    E(CGROUP_ERROR, -7411, false);                           \
304
8
    E(FATAL_ERROR, -7412, true);
305
306
// Define constexpr int error_code_name = error_code_value
307
#define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE;
308
APPLY_FOR_OLAP_ERROR_CODES(M)
309
#undef M
310
311
#define MM(name, value, ENABLESTACKTRACE) constexpr int name = (value);
312
APPLY_FOR_THRIFT_ERROR_CODES(MM)
313
#undef MM
314
315
constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536;
316
struct ErrorCodeState {
317
    int16_t error_code = 0;
318
    bool stacktrace = true;
319
    std::string description;
320
    size_t count = 0; // Used for count the number of error happens
321
    std::mutex mutex; // lock guard for count state
322
};
323
extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM];
324
325
class ErrorCodeInitializer {
326
public:
327
8
    ErrorCodeInitializer(int temp) : signal_value(temp) {
328
524k
        for (auto& error_state : error_states) {
329
524k
            error_state.error_code = 0;
330
524k
        }
331
8
#define M(NAME, VALUE, ENABLESTACKTRACE)              \
332
368
    error_states[NAME].stacktrace = ENABLESTACKTRACE; \
333
368
    error_states[NAME].description = #NAME;           \
334
368
    error_states[NAME].error_code = NAME;
335
368
        APPLY_FOR_THRIFT_ERROR_CODES(M)
336
8
#undef M
337
// In status.h, if error code > 0, then it means it will be used in TStatusCode and will
338
// also be used in FE.
339
// Other error codes that with error code < 0, will only be used in BE.
340
// We use abs(error code) as the index in error_states, so that these two kinds of error
341
// codes MUST not have overlap.
342
// Add an assert here to make sure the code in TStatusCode and other error code are not
343
// overlapped.
344
8
#define M(NAME, ERRORCODE, ENABLESTACKTRACE)                    \
345
1.76k
    assert(error_states[abs(ERRORCODE)].error_code == 0);       \
346
1.76k
    error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \
347
1.76k
    error_states[abs(ERRORCODE)].error_code = ERRORCODE;
348
1.76k
        APPLY_FOR_OLAP_ERROR_CODES(M)
349
1.76k
#undef M
350
1.76k
    }
351
352
8
    void check_init() const {
353
        //the signal value is 0, it means the global error states not inited, it's logical error
354
        // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time.
355
8
        if (signal_value == 0) {
356
0
            exit(-1);
357
0
        }
358
8
    }
359
360
private:
361
    int signal_value = 0;
362
};
363
364
extern ErrorCodeInitializer error_code_init;
365
} // namespace ErrorCode
366
367
class [[nodiscard]] Status {
368
public:
369
2.30G
    Status() : _code(ErrorCode::OK), _err_msg(nullptr) {}
370
371
    // used to convert Exception to Status
372
3.72k
    Status(int code, std::string msg, std::string stack = "") : _code(code) {
373
3.72k
        _err_msg = std::make_unique<ErrMsg>();
374
3.72k
        _err_msg->_msg = std::move(msg);
375
3.72k
        if (config::enable_stacktrace) {
376
1.31k
            _err_msg->_stack = std::move(stack);
377
1.31k
        }
378
3.72k
    }
379
380
    // copy c'tor makes copy of error detail so Status can be returned by value
381
127M
    Status(const Status& rhs) { *this = rhs; }
382
383
    // move c'tor
384
36.9M
    Status(Status&& rhs) noexcept = default;
385
386
    // same as copy c'tor
387
130M
    Status& operator=(const Status& rhs) {
388
130M
        _code = rhs._code;
389
130M
        if (rhs._err_msg) {
390
1.30M
            _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg);
391
129M
        } else {
392
            // If rhs error msg is empty, then should also clear current error msg
393
            // For example, if rhs is OK and current status is error, then copy to current
394
            // status, should clear current error message.
395
129M
            _err_msg.reset();
396
129M
        }
397
130M
        return *this;
398
130M
    }
399
400
    // move assign
401
89.7M
    Status& operator=(Status&& rhs) noexcept {
402
89.7M
        _code = rhs._code;
403
89.7M
        if (rhs._err_msg) {
404
962k
            _err_msg = std::move(rhs._err_msg);
405
88.8M
        } else {
406
88.8M
            _err_msg.reset();
407
88.8M
        }
408
89.7M
        return *this;
409
89.7M
    }
410
411
    // Defined in status.cpp (explicitly instantiated for stacktrace = true/false)
412
    // so this header does not need the thrift/protobuf generated headers.
413
    template <bool stacktrace = true>
414
    Status static create(const TStatus& status);
415
416
    template <bool stacktrace = true>
417
    Status static create(const PStatus& pstatus);
418
419
    template <int code, bool stacktrace = true, typename... Args>
420
8.36M
    Status static Error(std::string_view msg, Args&&... args) {
421
8.36M
        Status status;
422
8.36M
        status._code = code;
423
8.36M
        status._err_msg = std::make_unique<ErrMsg>();
424
8.36M
        if constexpr (sizeof...(args) == 0) {
425
7.68M
            status._err_msg->_msg = msg;
426
7.68M
        } else {
427
686k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
686k
        }
429
8.36M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8.36M
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
496
            status._err_msg->_stack = get_stack_trace(1);
433
496
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
496
        }
435
8.36M
        return status;
436
8.36M
    }
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
285k
    Status static Error(std::string_view msg, Args&&... args) {
421
285k
        Status status;
422
285k
        status._code = code;
423
285k
        status._err_msg = std::make_unique<ErrMsg>();
424
285k
        if constexpr (sizeof...(args) == 0) {
425
285k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
285k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
285k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
285k
        return status;
436
285k
    }
_ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
17
    Status static Error(std::string_view msg, Args&&... args) {
421
17
        Status status;
422
17
        status._code = code;
423
17
        status._err_msg = std::make_unique<ErrMsg>();
424
17
        if constexpr (sizeof...(args) == 0) {
425
17
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
17
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
17
        return status;
436
17
    }
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
80
    Status static Error(std::string_view msg, Args&&... args) {
421
80
        Status status;
422
80
        status._code = code;
423
80
        status._err_msg = std::make_unique<ErrMsg>();
424
80
        if constexpr (sizeof...(args) == 0) {
425
80
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
80
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
80
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
52
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
52
        }
435
80
        return status;
436
80
    }
_ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
33
    Status static Error(std::string_view msg, Args&&... args) {
421
33
        Status status;
422
33
        status._code = code;
423
33
        status._err_msg = std::make_unique<ErrMsg>();
424
33
        if constexpr (sizeof...(args) == 0) {
425
33
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
33
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
33
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
33
        return status;
436
33
    }
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
44
    Status static Error(std::string_view msg, Args&&... args) {
421
44
        Status status;
422
44
        status._code = code;
423
44
        status._err_msg = std::make_unique<ErrMsg>();
424
44
        if constexpr (sizeof...(args) == 0) {
425
44
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
44
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
44
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
44
        return status;
436
44
    }
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
420
14
    Status static Error(std::string_view msg, Args&&... args) {
421
14
        Status status;
422
14
        status._code = code;
423
14
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
14
        } else {
427
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
14
        }
429
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
14
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
14
        return status;
436
14
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSt17basic_string_viewIcS5_EEEES0_SA_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
383
    Status static Error(std::string_view msg, Args&&... args) {
421
383
        Status status;
422
383
        status._code = code;
423
383
        status._err_msg = std::make_unique<ErrMsg>();
424
383
        if constexpr (sizeof...(args) == 0) {
425
383
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
383
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
383
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
33
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
33
        }
435
383
        return status;
436
383
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi5ELb0EJRmRKmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
25
    Status static Error(std::string_view msg, Args&&... args) {
421
25
        Status status;
422
25
        status._code = code;
423
25
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
25
        } else {
427
25
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
25
        }
429
25
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
25
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
25
        return status;
436
25
    }
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
38
    Status static Error(std::string_view msg, Args&&... args) {
421
38
        Status status;
422
38
        status._code = code;
423
38
        status._err_msg = std::make_unique<ErrMsg>();
424
38
        if constexpr (sizeof...(args) == 0) {
425
38
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
38
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
38
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
38
        return status;
436
38
    }
_ZN5doris6Status5ErrorILi5ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
2
        if constexpr (sizeof...(args) == 0) {
425
2
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
90
    Status static Error(std::string_view msg, Args&&... args) {
421
90
        Status status;
422
90
        status._code = code;
423
90
        status._err_msg = std::make_unique<ErrMsg>();
424
90
        if constexpr (sizeof...(args) == 0) {
425
90
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
90
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
90
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
90
        return status;
436
90
    }
_ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
19
    Status static Error(std::string_view msg, Args&&... args) {
421
19
        Status status;
422
19
        status._code = code;
423
19
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
19
        } else {
427
19
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
19
        }
429
19
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
19
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
19
        return status;
436
19
    }
_ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
24
    Status static Error(std::string_view msg, Args&&... args) {
421
24
        Status status;
422
24
        status._code = code;
423
24
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
24
        } else {
427
24
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
24
        }
429
24
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
24
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
24
        return status;
436
24
    }
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
146k
    Status static Error(std::string_view msg, Args&&... args) {
421
146k
        Status status;
422
146k
        status._code = code;
423
146k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
146k
        } else {
427
146k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
146k
        }
429
146k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
146k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
146k
        return status;
436
146k
    }
_ZN5doris6Status5ErrorILi33ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
36
    Status static Error(std::string_view msg, Args&&... args) {
421
36
        Status status;
422
36
        status._code = code;
423
36
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
36
        } else {
427
36
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
36
        }
429
36
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
36
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
36
        return status;
436
36
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
48.0k
    Status static Error(std::string_view msg, Args&&... args) {
421
48.0k
        Status status;
422
48.0k
        status._code = code;
423
48.0k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
48.0k
        } else {
427
48.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
48.0k
        }
429
48.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
48.0k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
2
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
2
        }
435
48.0k
        return status;
436
48.0k
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
361
    Status static Error(std::string_view msg, Args&&... args) {
421
361
        Status status;
422
361
        status._code = code;
423
361
        status._err_msg = std::make_unique<ErrMsg>();
424
361
        if constexpr (sizeof...(args) == 0) {
425
361
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
361
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
361
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
361
        return status;
436
361
    }
_ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
257
    Status static Error(std::string_view msg, Args&&... args) {
421
257
        Status status;
422
257
        status._code = code;
423
257
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
257
        } else {
427
257
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
257
        }
429
257
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
257
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
257
        return status;
436
257
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
14
    Status static Error(std::string_view msg, Args&&... args) {
421
14
        Status status;
422
14
        status._code = code;
423
14
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
14
        } else {
427
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
14
        }
429
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
14
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
14
        return status;
436
14
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
55
    Status static Error(std::string_view msg, Args&&... args) {
421
55
        Status status;
422
55
        status._code = code;
423
55
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
55
        } else {
427
55
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
55
        }
429
55
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
55
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
55
        return status;
436
55
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
12
    Status static Error(std::string_view msg, Args&&... args) {
421
12
        Status status;
422
12
        status._code = code;
423
12
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
12
        } else {
427
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
12
        }
429
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
12
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
12
        return status;
436
12
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
22
    Status static Error(std::string_view msg, Args&&... args) {
421
22
        Status status;
422
22
        status._code = code;
423
22
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
22
        } else {
427
22
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
22
        }
429
22
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
22
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
22
        return status;
436
22
    }
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: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
188k
    Status static Error(std::string_view msg, Args&&... args) {
421
188k
        Status status;
422
188k
        status._code = code;
423
188k
        status._err_msg = std::make_unique<ErrMsg>();
424
188k
        if constexpr (sizeof...(args) == 0) {
425
188k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
188k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
188k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
188k
        return status;
436
188k
    }
_ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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_
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
44.7k
    Status static Error(std::string_view msg, Args&&... args) {
421
44.7k
        Status status;
422
44.7k
        status._code = code;
423
44.7k
        status._err_msg = std::make_unique<ErrMsg>();
424
44.7k
        if constexpr (sizeof...(args) == 0) {
425
44.7k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
44.7k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
44.7k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
44.7k
        return status;
436
44.7k
    }
_ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
44
    Status static Error(std::string_view msg, Args&&... args) {
421
44
        Status status;
422
44
        status._code = code;
423
44
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
44
        } else {
427
44
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
44
        }
429
44
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
44
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
44
        return status;
436
44
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
551
    Status static Error(std::string_view msg, Args&&... args) {
421
551
        Status status;
422
551
        status._code = code;
423
551
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
551
        } else {
427
551
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
551
        }
429
551
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
551
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
551
        return status;
436
551
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
13
    Status static Error(std::string_view msg, Args&&... args) {
421
13
        Status status;
422
13
        status._code = code;
423
13
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
13
        } else {
427
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
13
        }
429
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
13
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
13
        return status;
436
13
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
16
    Status static Error(std::string_view msg, Args&&... args) {
421
16
        Status status;
422
16
        status._code = code;
423
16
        status._err_msg = std::make_unique<ErrMsg>();
424
16
        if constexpr (sizeof...(args) == 0) {
425
16
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
16
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
16
        return status;
436
16
    }
_ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
8
        if constexpr (sizeof...(args) == 0) {
425
8
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
8
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
8
        }
435
8
        return status;
436
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_jS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin7411ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
90.0k
    Status static Error(std::string_view msg, Args&&... args) {
421
90.0k
        Status status;
422
90.0k
        status._code = code;
423
90.0k
        status._err_msg = std::make_unique<ErrMsg>();
424
90.0k
        if constexpr (sizeof...(args) == 0) {
425
90.0k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
90.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
90.0k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
90.0k
        return status;
436
90.0k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA7_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA12_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
81
    Status static Error(std::string_view msg, Args&&... args) {
421
81
        Status status;
422
81
        status._code = code;
423
81
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
81
        } else {
427
81
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
81
        }
429
81
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
81
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
81
        return status;
436
81
    }
_ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
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
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2.59M
    Status static Error(std::string_view msg, Args&&... args) {
421
2.59M
        Status status;
422
2.59M
        status._code = code;
423
2.59M
        status._err_msg = std::make_unique<ErrMsg>();
424
2.59M
        if constexpr (sizeof...(args) == 0) {
425
2.59M
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2.59M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2.59M
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2.59M
        return status;
436
2.59M
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
4.65k
    Status static Error(std::string_view msg, Args&&... args) {
421
4.65k
        Status status;
422
4.65k
        status._code = code;
423
4.65k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4.65k
        } else {
427
4.65k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4.65k
        }
429
4.65k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4.65k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4.65k
        return status;
436
4.65k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
6
        if constexpr (sizeof...(args) == 0) {
425
6
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
268
    Status static Error(std::string_view msg, Args&&... args) {
421
268
        Status status;
422
268
        status._code = code;
423
268
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
268
        } else {
427
268
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
268
        }
429
268
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
268
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
268
        return status;
436
268
    }
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
9
    Status static Error(std::string_view msg, Args&&... args) {
421
9
        Status status;
422
9
        status._code = code;
423
9
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
9
        } else {
427
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
9
        }
429
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9
        return status;
436
9
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
9
    Status static Error(std::string_view msg, Args&&... args) {
421
9
        Status status;
422
9
        status._code = code;
423
9
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
9
        } else {
427
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
9
        }
429
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9
        return status;
436
9
    }
_ZN5doris6Status5ErrorILi46ELb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
120
    Status static Error(std::string_view msg, Args&&... args) {
421
120
        Status status;
422
120
        status._code = code;
423
120
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
120
        } else {
427
120
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
120
        }
429
120
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
120
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
120
        return status;
436
120
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
37
    Status static Error(std::string_view msg, Args&&... args) {
421
37
        Status status;
422
37
        status._code = code;
423
37
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
37
        } else {
427
37
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
37
        }
429
37
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
37
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
37
        return status;
436
37
    }
_ZN5doris6Status5ErrorILi32ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
58
    Status static Error(std::string_view msg, Args&&... args) {
421
58
        Status status;
422
58
        status._code = code;
423
58
        status._err_msg = std::make_unique<ErrMsg>();
424
58
        if constexpr (sizeof...(args) == 0) {
425
58
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
58
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
58
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
2
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
2
        }
435
58
        return status;
436
58
    }
_ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
10
    Status static Error(std::string_view msg, Args&&... args) {
421
10
        Status status;
422
10
        status._code = code;
423
10
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
10
        } else {
427
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
10
        }
429
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
10
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
10
        return status;
436
10
    }
_ZN5doris6Status5ErrorILi33ELb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
14
    Status static Error(std::string_view msg, Args&&... args) {
421
14
        Status status;
422
14
        status._code = code;
423
14
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
14
        } else {
427
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
14
        }
429
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
14
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
14
        return status;
436
14
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4.44k
    Status static Error(std::string_view msg, Args&&... args) {
421
4.44k
        Status status;
422
4.44k
        status._code = code;
423
4.44k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4.44k
        } else {
427
4.44k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4.44k
        }
429
4.44k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4.44k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4.44k
        return status;
436
4.44k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi32ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
9
    Status static Error(std::string_view msg, Args&&... args) {
421
9
        Status status;
422
9
        status._code = code;
423
9
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
9
        } else {
427
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
9
        }
429
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9
        return status;
436
9
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
31
    Status static Error(std::string_view msg, Args&&... args) {
421
31
        Status status;
422
31
        status._code = code;
423
31
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
31
        } else {
427
31
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
31
        }
429
31
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
31
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
31
        return status;
436
31
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEES6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRliEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKijEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
81
    Status static Error(std::string_view msg, Args&&... args) {
421
81
        Status status;
422
81
        status._code = code;
423
81
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
81
        } else {
427
81
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
81
        }
429
81
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
81
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
81
        return status;
436
81
    }
_ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi46ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi3ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
219
    Status static Error(std::string_view msg, Args&&... args) {
421
219
        Status status;
422
219
        status._code = code;
423
219
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
219
        } else {
427
219
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
219
        }
429
219
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
219
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
219
        return status;
436
219
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
11.1k
    Status static Error(std::string_view msg, Args&&... args) {
421
11.1k
        Status status;
422
11.1k
        status._code = code;
423
11.1k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
11.1k
        } else {
427
11.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
11.1k
        }
429
11.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11.1k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11.1k
        return status;
436
11.1k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi47ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin223ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
25
    Status static Error(std::string_view msg, Args&&... args) {
421
25
        Status status;
422
25
        status._code = code;
423
25
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
25
        } else {
427
25
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
25
        }
429
25
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
25
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
25
        return status;
436
25
    }
_ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
9.44k
    Status static Error(std::string_view msg, Args&&... args) {
421
9.44k
        Status status;
422
9.44k
        status._code = code;
423
9.44k
        status._err_msg = std::make_unique<ErrMsg>();
424
9.44k
        if constexpr (sizeof...(args) == 0) {
425
9.44k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
9.46k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9.44k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9.44k
        return status;
436
9.44k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2.55k
    Status static Error(std::string_view msg, Args&&... args) {
421
2.55k
        Status status;
422
2.55k
        status._code = code;
423
2.55k
        status._err_msg = std::make_unique<ErrMsg>();
424
2.55k
        if constexpr (sizeof...(args) == 0) {
425
2.55k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2.55k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2.55k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2.55k
        return status;
436
2.55k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin257ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_RKjRKS7_RbbSC_bibbEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
31
    Status static Error(std::string_view msg, Args&&... args) {
421
31
        Status status;
422
31
        status._code = code;
423
31
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
31
        } else {
427
31
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
31
        }
429
31
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
31
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
31
        return status;
436
31
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4.07k
    Status static Error(std::string_view msg, Args&&... args) {
421
4.07k
        Status status;
422
4.07k
        status._code = code;
423
4.07k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4.07k
        } else {
427
4.07k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4.07k
        }
429
4.07k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4.07k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
21
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
21
        }
435
4.07k
        return status;
436
4.07k
    }
_ZN5doris6Status5ErrorILi36ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi39ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
9
    Status static Error(std::string_view msg, Args&&... args) {
421
9
        Status status;
422
9
        status._code = code;
423
9
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
9
        } else {
427
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
9
        }
429
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9
        return status;
436
9
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.78k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.78k
        Status status;
422
1.78k
        status._code = code;
423
1.78k
        status._err_msg = std::make_unique<ErrMsg>();
424
1.78k
        if constexpr (sizeof...(args) == 0) {
425
1.78k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1.78k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.78k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.78k
        return status;
436
1.78k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
3
        if constexpr (sizeof...(args) == 0) {
425
3
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
114
    Status static Error(std::string_view msg, Args&&... args) {
421
114
        Status status;
422
114
        status._code = code;
423
114
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
114
        } else {
427
114
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
114
        }
429
114
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
114
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
100
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
100
        }
435
114
        return status;
436
114
    }
_ZN5doris6Status5ErrorILi3ELb1EJRmRKmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi6ELb1EJRPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi16ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2.56k
    Status static Error(std::string_view msg, Args&&... args) {
421
2.56k
        Status status;
422
2.56k
        status._code = code;
423
2.56k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2.56k
        } else {
427
2.56k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2.56k
        }
429
2.56k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2.56k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2.56k
        return status;
436
2.56k
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3.79k
    Status static Error(std::string_view msg, Args&&... args) {
421
3.79k
        Status status;
422
3.79k
        status._code = code;
423
3.79k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3.79k
        } else {
427
3.79k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3.79k
        }
429
3.79k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3.79k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3.79k
        return status;
436
3.79k
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILi6ELb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
11
    Status static Error(std::string_view msg, Args&&... args) {
421
11
        Status status;
422
11
        status._code = code;
423
11
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
11
        } else {
427
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
11
        }
429
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11
        return status;
436
11
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjjEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbiRKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiRKS7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKmRlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKmRmS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_S2_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_SB_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_SD_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_PKcSB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_S2_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_SB_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_SD_SB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_PKcSB_EEES0_S6_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRKiRKmS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_RKmS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
76
    Status static Error(std::string_view msg, Args&&... args) {
421
76
        Status status;
422
76
        status._code = code;
423
76
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
76
        } else {
427
76
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
76
        }
429
76
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
76
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
76
        return status;
436
76
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_mmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKS7_mmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKmmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjRKjEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3.88M
    Status static Error(std::string_view msg, Args&&... args) {
421
3.88M
        Status status;
422
3.88M
        status._code = code;
423
3.88M
        status._err_msg = std::make_unique<ErrMsg>();
424
3.88M
        if constexpr (sizeof...(args) == 0) {
425
3.88M
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
3.92M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3.88M
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3.88M
        return status;
436
3.88M
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILin6001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
2
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
2
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEmmEEES0_S5_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEPKcEEES0_S5_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
29
    Status static Error(std::string_view msg, Args&&... args) {
421
29
        Status status;
422
29
        status._code = code;
423
29
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
29
        } else {
427
29
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
29
        }
429
29
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
29
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
29
        return status;
436
29
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
25
    Status static Error(std::string_view msg, Args&&... args) {
421
25
        Status status;
422
25
        status._code = code;
423
25
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
25
        } else {
427
25
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
25
        }
429
25
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
25
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
25
        return status;
436
25
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
21
    Status static Error(std::string_view msg, Args&&... args) {
421
21
        Status status;
422
21
        status._code = code;
423
21
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
21
        } else {
427
21
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
21
        }
429
21
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
21
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
21
        return status;
436
21
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
16.1k
    Status static Error(std::string_view msg, Args&&... args) {
421
16.1k
        Status status;
422
16.1k
        status._code = code;
423
16.1k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
16.1k
        } else {
427
16.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
16.1k
        }
429
16.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
16.1k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
16.1k
        return status;
436
16.1k
    }
_ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
27
    Status static Error(std::string_view msg, Args&&... args) {
421
27
        Status status;
422
27
        status._code = code;
423
27
        status._err_msg = std::make_unique<ErrMsg>();
424
27
        if constexpr (sizeof...(args) == 0) {
425
27
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
27
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
27
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
27
        return status;
436
27
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
13
    Status static Error(std::string_view msg, Args&&... args) {
421
13
        Status status;
422
13
        status._code = code;
423
13
        status._err_msg = std::make_unique<ErrMsg>();
424
13
        if constexpr (sizeof...(args) == 0) {
425
13
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
13
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
13
        return status;
436
13
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
12
    Status static Error(std::string_view msg, Args&&... args) {
421
12
        Status status;
422
12
        status._code = code;
423
12
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
12
        } else {
427
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
12
        }
429
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
12
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
12
        return status;
436
12
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
10
    Status static Error(std::string_view msg, Args&&... args) {
421
10
        Status status;
422
10
        status._code = code;
423
10
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
10
        } else {
427
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
10
        }
429
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
10
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
10
        return status;
436
10
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
10
    Status static Error(std::string_view msg, Args&&... args) {
421
10
        Status status;
422
10
        status._code = code;
423
10
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
10
        } else {
427
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
10
        }
429
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
10
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
10
        return status;
436
10
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
154
    Status static Error(std::string_view msg, Args&&... args) {
421
154
        Status status;
422
154
        status._code = code;
423
154
        status._err_msg = std::make_unique<ErrMsg>();
424
154
        if constexpr (sizeof...(args) == 0) {
425
154
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
154
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
154
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
154
        return status;
436
154
    }
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
15
    Status static Error(std::string_view msg, Args&&... args) {
421
15
        Status status;
422
15
        status._code = code;
423
15
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
15
        } else {
427
15
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
15
        }
429
15
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
15
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
15
        return status;
436
15
    }
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILi47ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi47ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
4
        if constexpr (sizeof...(args) == 0) {
425
4
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcmRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
16
    Status static Error(std::string_view msg, Args&&... args) {
421
16
        Status status;
422
16
        status._code = code;
423
16
        status._err_msg = std::make_unique<ErrMsg>();
424
16
        if constexpr (sizeof...(args) == 0) {
425
16
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
16
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
16
        return status;
436
16
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
_ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
386
    Status static Error(std::string_view msg, Args&&... args) {
421
386
        Status status;
422
386
        status._code = code;
423
386
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
386
        } else {
427
386
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
386
        }
429
386
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
386
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
386
        return status;
436
386
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_
Line
Count
Source
420
1.21k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.21k
        Status status;
422
1.21k
        status._code = code;
423
1.21k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1.21k
        } else {
427
1.21k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1.21k
        }
429
1.21k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.21k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.21k
        return status;
436
1.21k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
12
    Status static Error(std::string_view msg, Args&&... args) {
421
12
        Status status;
422
12
        status._code = code;
423
12
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
12
        } else {
427
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
12
        }
429
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
12
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
12
        return status;
436
12
    }
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILi71ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
120k
    Status static Error(std::string_view msg, Args&&... args) {
421
120k
        Status status;
422
120k
        status._code = code;
423
120k
        status._err_msg = std::make_unique<ErrMsg>();
424
120k
        if constexpr (sizeof...(args) == 0) {
425
120k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
120k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
120k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
120k
        return status;
436
120k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi3ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi3ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
13
    Status static Error(std::string_view msg, Args&&... args) {
421
13
        Status status;
422
13
        status._code = code;
423
13
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
13
        } else {
427
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
13
        }
429
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
13
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
13
        return status;
436
13
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRllRKllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmRtRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
13
    Status static Error(std::string_view msg, Args&&... args) {
421
13
        Status status;
422
13
        status._code = code;
423
13
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
13
        } else {
427
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
13
        }
429
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
13
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
13
        return status;
436
13
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESA_EEES0_S5_DpOT1_
Line
Count
Source
420
11
    Status static Error(std::string_view msg, Args&&... args) {
421
11
        Status status;
422
11
        status._code = code;
423
11
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
11
        } else {
427
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
11
        }
429
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11
        return status;
436
11
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRjS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKiRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILi32ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
_ZN5doris6Status5ErrorILi32ELb1EJRlmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi32ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKiRKmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRiRKmS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJbbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRKjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRjmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKjmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRliEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlmmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi3ELb1EJRKNS_10TPushAggOp4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlRjS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlRKlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi5ELb1EJRPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN8simdjson10error_codeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKN8simdjson10error_codeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRjRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi30ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmRKlEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRmRKmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRtRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA9_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRiRN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRijEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
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
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjjS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi46ELb0EJRPKcRlS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi3ELb1EJRPKcRlS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS9_RKmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi46ELb0EJRKjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJjjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi4ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.00k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.00k
        Status status;
422
1.00k
        status._code = code;
423
1.00k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1.00k
        } else {
427
1.00k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1.00k
        }
429
1.00k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.00k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.00k
        return status;
436
1.00k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKmS3_RmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcS5_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi6ELb1EJRPKcS3_iKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_RiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
3
        if constexpr (sizeof...(args) == 0) {
425
3
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin238ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
65
    Status static Error(std::string_view msg, Args&&... args) {
421
65
        Status status;
422
65
        status._code = code;
423
65
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
65
        } else {
427
65
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
65
        }
429
65
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
65
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
65
        return status;
436
65
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRlRKlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
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: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
110
    Status static Error(std::string_view msg, Args&&... args) {
421
110
        Status status;
422
110
        status._code = code;
423
110
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
110
        } else {
427
110
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
110
        }
429
110
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
110
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
100
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
100
        }
435
110
        return status;
436
110
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi7ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb0EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmRmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb0EJmRKmmS3_RKjRbRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin233ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin911ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRKlRlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6001ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
2
        if constexpr (sizeof...(args) == 0) {
425
2
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin300ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin243ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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: _ZN5doris6Status5ErrorILin217ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin222ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
227k
    Status static Error(std::string_view msg, Args&&... args) {
421
227k
        Status status;
422
227k
        status._code = code;
423
227k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
227k
        } else {
427
227k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
227k
        }
429
227k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
227k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
227k
        return status;
436
227k
    }
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbmRiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
26.4k
    Status static Error(std::string_view msg, Args&&... args) {
421
26.4k
        Status status;
422
26.4k
        status._code = code;
423
26.4k
        status._err_msg = std::make_unique<ErrMsg>();
424
26.4k
        if constexpr (sizeof...(args) == 0) {
425
26.4k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
26.4k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
26.4k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
26.4k
        return status;
436
26.4k
    }
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: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_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
420
362
    Status static Error(std::string_view msg, Args&&... args) {
421
362
        Status status;
422
362
        status._code = code;
423
362
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
362
        } else {
427
362
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
362
        }
429
362
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
362
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
362
        return status;
436
362
    }
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
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
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
420
11
    Status static Error(std::string_view msg, Args&&... args) {
421
11
        Status status;
422
11
        status._code = code;
423
11
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
11
        } else {
427
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
11
        }
429
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11
        return status;
436
11
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmRKjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjRKmEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERmS7_EEES0_S5_DpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
_ZN5doris6Status5ErrorILi32ELb1EJhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJhRhS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi33ELb0EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRimRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v224HierarchicalDataIterator8ReadTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
449
    Status static Error(std::string_view msg, Args&&... args) {
421
449
        Status status;
422
449
        status._code = code;
423
449
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
449
        } else {
427
449
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
449
        }
429
449
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
449
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
449
        return status;
436
449
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: unity_22_cxx.cxx:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_9EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_mS2_RiRKmEEES0_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_
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
237
    Status static Error(std::string_view msg, Args&&... args) {
421
237
        Status status;
422
237
        status._code = code;
423
237
        status._err_msg = std::make_unique<ErrMsg>();
424
237
        if constexpr (sizeof...(args) == 0) {
425
237
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
237
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
237
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
237
        return status;
436
237
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: unity_22_cxx.cxx:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v24$_25ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRjmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_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_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: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_S2_RmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_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
420
16
    Status static Error(std::string_view msg, Args&&... args) {
421
16
        Status status;
422
16
        status._code = code;
423
16
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
16
        } else {
427
16
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
16
        }
429
16
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
16
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
16
        return status;
436
16
    }
_ZN5doris6Status5ErrorILi32ELb1EJRjRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi32ELb1EJRjRmRKmS5_S5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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_
_ZN5doris6Status5ErrorILin7000ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
182k
    Status static Error(std::string_view msg, Args&&... args) {
421
182k
        Status status;
422
182k
        status._code = code;
423
182k
        status._err_msg = std::make_unique<ErrMsg>();
424
182k
        if constexpr (sizeof...(args) == 0) {
425
182k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
182k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
182k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
182k
        return status;
436
182k
    }
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
354
    Status static Error(std::string_view msg, Args&&... args) {
421
354
        Status status;
422
354
        status._code = code;
423
354
        status._err_msg = std::make_unique<ErrMsg>();
424
354
        if constexpr (sizeof...(args) == 0) {
425
354
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
354
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
354
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
354
        return status;
436
354
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmSB_SB_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi6ELb1EJRmjmN3fmt2v78arg_joinIN9__gnu_cxx17__normal_iteratorIPjSt6vectorIjSaIjEEEESC_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S2_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRmRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJmRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEllEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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: _ZN5doris6Status5ErrorILi6ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_
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: unity_21_cxx.cxx:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v24$_20EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: unity_21_cxx.cxx:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v24$_17EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin7002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5.53k
    Status static Error(std::string_view msg, Args&&... args) {
421
5.53k
        Status status;
422
5.53k
        status._code = code;
423
5.53k
        status._err_msg = std::make_unique<ErrMsg>();
424
5.53k
        if constexpr (sizeof...(args) == 0) {
425
5.53k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
5.53k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5.53k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5.53k
        return status;
436
5.53k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_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_
_ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmRSt6atomicIiESD_SD_mEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3105ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
312
    Status static Error(std::string_view msg, Args&&... args) {
421
312
        Status status;
422
312
        status._code = code;
423
312
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
312
        } else {
427
312
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
312
        }
429
312
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
312
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
312
        return status;
436
312
    }
_ZN5doris6Status5ErrorILin3002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
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_
_ZN5doris6Status5ErrorILin224ELb1EJRmS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.85k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.85k
        Status status;
422
1.85k
        status._code = code;
423
1.85k
        status._err_msg = std::make_unique<ErrMsg>();
424
1.85k
        if constexpr (sizeof...(args) == 0) {
425
1.85k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1.85k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.85k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.85k
        return status;
436
1.85k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _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_
_ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
29
    Status static Error(std::string_view msg, Args&&... args) {
421
29
        Status status;
422
29
        status._code = code;
423
29
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
29
        } else {
427
29
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
29
        }
429
29
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
29
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
29
        return status;
436
29
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
12
    Status static Error(std::string_view msg, Args&&... args) {
421
12
        Status status;
422
12
        status._code = code;
423
12
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
12
        } else {
427
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
12
        }
429
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
12
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
12
        return status;
436
12
    }
_ZN5doris6Status5ErrorILin7003ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
38
    Status static Error(std::string_view msg, Args&&... args) {
421
38
        Status status;
422
38
        status._code = code;
423
38
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
38
        } else {
427
38
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
38
        }
429
38
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
38
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
38
        return status;
436
38
    }
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlS7_S7_RKmmRKiSF_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin6012ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.43k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.43k
        Status status;
422
1.43k
        status._code = code;
423
1.43k
        status._err_msg = std::make_unique<ErrMsg>();
424
1.43k
        if constexpr (sizeof...(args) == 0) {
425
1.43k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1.43k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.43k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.43k
        return status;
436
1.43k
    }
_ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
2
        if constexpr (sizeof...(args) == 0) {
425
2
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
11
    Status static Error(std::string_view msg, Args&&... args) {
421
11
        Status status;
422
11
        status._code = code;
423
11
        status._err_msg = std::make_unique<ErrMsg>();
424
11
        if constexpr (sizeof...(args) == 0) {
425
11
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11
        return status;
436
11
    }
_ZN5doris6Status5ErrorILin6001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
6
        if constexpr (sizeof...(args) == 0) {
425
6
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILin6012ELb0EJRmRKmS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin6012ELb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILin6011ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
4
        if constexpr (sizeof...(args) == 0) {
425
4
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb0EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEPKcEEES0_S5_DpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin6013ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
9
    Status static Error(std::string_view msg, Args&&... args) {
421
9
        Status status;
422
9
        status._code = code;
423
9
        status._err_msg = std::make_unique<ErrMsg>();
424
9
        if constexpr (sizeof...(args) == 0) {
425
9
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
9
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
9
        return status;
436
9
    }
_ZN5doris6Status5ErrorILin6001ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
29
    Status static Error(std::string_view msg, Args&&... args) {
421
29
        Status status;
422
29
        status._code = code;
423
29
        status._err_msg = std::make_unique<ErrMsg>();
424
29
        if constexpr (sizeof...(args) == 0) {
425
29
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
29
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
29
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
29
        return status;
436
29
    }
_ZN5doris6Status5ErrorILin6001ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin6001ELb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILin6012ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
2.19k
    Status static Error(std::string_view msg, Args&&... args) {
421
2.19k
        Status status;
422
2.19k
        status._code = code;
423
2.19k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2.19k
        } else {
427
2.19k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2.19k
        }
429
2.19k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2.19k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2.19k
        return status;
436
2.19k
    }
_ZN5doris6Status5ErrorILin6001ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6012ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
64
    Status static Error(std::string_view msg, Args&&... args) {
421
64
        Status status;
422
64
        status._code = code;
423
64
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
64
        } else {
427
64
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
64
        }
429
64
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
64
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
64
        return status;
436
64
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6001ELb0EJRjRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRmS2_RKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6001ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
18
    Status static Error(std::string_view msg, Args&&... args) {
421
18
        Status status;
422
18
        status._code = code;
423
18
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
18
        } else {
427
18
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
18
        }
429
18
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
18
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
18
        return status;
436
18
    }
_ZN5doris6Status5ErrorILin6012ELb0EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin6012ELb0EJRPKcRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILin6001ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb1EJRjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6001ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin6004ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
11
    Status static Error(std::string_view msg, Args&&... args) {
421
11
        Status status;
422
11
        status._code = code;
423
11
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
11
        } else {
427
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
11
        }
429
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
11
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
11
        return status;
436
11
    }
_ZN5doris6Status5ErrorILin6011ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
44
    Status static Error(std::string_view msg, Args&&... args) {
421
44
        Status status;
422
44
        status._code = code;
423
44
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
44
        } else {
427
44
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
44
        }
429
44
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
44
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
44
        return status;
436
44
    }
_ZN5doris6Status5ErrorILin6011ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEmRKmEEES0_S5_DpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
5
        if constexpr (sizeof...(args) == 0) {
425
5
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILin6004ELb1EJRmRiRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
835
    Status static Error(std::string_view msg, Args&&... args) {
421
835
        Status status;
422
835
        status._code = code;
423
835
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
835
        } else {
427
835
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
835
        }
429
861
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
835
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
835
        return status;
436
835
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
2
        if constexpr (sizeof...(args) == 0) {
425
2
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRPKcRmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRPKcRmRKmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
22
    Status static Error(std::string_view msg, Args&&... args) {
421
22
        Status status;
422
22
        status._code = code;
423
22
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
22
        } else {
427
22
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
22
        }
429
22
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
22
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
22
        return status;
436
22
    }
_ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
10
    Status static Error(std::string_view msg, Args&&... args) {
421
10
        Status status;
422
10
        status._code = code;
423
10
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
10
        } else {
427
10
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
10
        }
429
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
10
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
10
        return status;
436
10
    }
_ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6003ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6007ELb0EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
20.6k
    Status static Error(std::string_view msg, Args&&... args) {
421
20.6k
        Status status;
422
20.6k
        status._code = code;
423
20.6k
        status._err_msg = std::make_unique<ErrMsg>();
424
20.6k
        if constexpr (sizeof...(args) == 0) {
425
20.6k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
20.6k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
20.6k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
20.6k
        return status;
436
20.6k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
203
    Status static Error(std::string_view msg, Args&&... args) {
421
203
        Status status;
422
203
        status._code = code;
423
203
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
203
        } else {
427
203
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
203
        }
429
203
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
203
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
203
        return status;
436
203
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlRmmEEES0_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: _ZN5doris6Status5ErrorILin224ELb1EJlRlS2_S2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
176k
    Status static Error(std::string_view msg, Args&&... args) {
421
176k
        Status status;
422
176k
        status._code = code;
423
176k
        status._err_msg = std::make_unique<ErrMsg>();
424
176k
        if constexpr (sizeof...(args) == 0) {
425
176k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
176k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
176k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
176k
        return status;
436
176k
    }
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
296
    Status static Error(std::string_view msg, Args&&... args) {
421
296
        Status status;
422
296
        status._code = code;
423
296
        status._err_msg = std::make_unique<ErrMsg>();
424
296
        if constexpr (sizeof...(args) == 0) {
425
296
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
296
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
296
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
296
        return status;
436
296
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRKmmSB_RiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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
420
182
    Status static Error(std::string_view msg, Args&&... args) {
421
182
        Status status;
422
182
        status._code = code;
423
182
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
182
        } else {
427
182
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
182
        }
429
182
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
182
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
182
        return status;
436
182
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi5ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
179k
    Status static Error(std::string_view msg, Args&&... args) {
421
179k
        Status status;
422
179k
        status._code = code;
423
179k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
179k
        } else {
427
179k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
179k
        }
429
179k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
179k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
179k
        return status;
436
179k
    }
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_
_ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
2
        if constexpr (sizeof...(args) == 0) {
425
2
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILin259ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
37.8k
    Status static Error(std::string_view msg, Args&&... args) {
421
37.8k
        Status status;
422
37.8k
        status._code = code;
423
37.8k
        status._err_msg = std::make_unique<ErrMsg>();
424
37.8k
        if constexpr (sizeof...(args) == 0) {
425
37.8k
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
38.4k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
37.8k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
37.8k
        return status;
436
37.8k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
3
        if constexpr (sizeof...(args) == 0) {
425
3
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
43
    Status static Error(std::string_view msg, Args&&... args) {
421
43
        Status status;
422
43
        status._code = code;
423
43
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
43
        } else {
427
43
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
43
        }
429
43
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
43
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
43
        return status;
436
43
    }
_ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
_ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
25
    Status static Error(std::string_view msg, Args&&... args) {
421
25
        Status status;
422
25
        status._code = code;
423
25
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
25
        } else {
427
25
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
25
        }
429
25
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
25
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
25
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
25
        }
435
25
        return status;
436
25
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNS_27PRerunFragmentParams_OpcodeEEEES0_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: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin217ELb1EJRmdS2_RKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
1
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
1
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
65
    Status static Error(std::string_view msg, Args&&... args) {
421
65
        Status status;
422
65
        status._code = code;
423
65
        status._err_msg = std::make_unique<ErrMsg>();
424
65
        if constexpr (sizeof...(args) == 0) {
425
65
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
65
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
65
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
65
        return status;
436
65
    }
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: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi9ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
1
        if constexpr (sizeof...(args) == 0) {
425
1
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILin240ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
7
        } else {
427
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
7
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILin240ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
5
    Status static Error(std::string_view msg, Args&&... args) {
421
5
        Status status;
422
5
        status._code = code;
423
5
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
5
        } else {
427
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
5
        }
429
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
5
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
5
        return status;
436
5
    }
_ZN5doris6Status5ErrorILi6ELb1EJRPKcRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
4
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
4
        }
435
6
        return status;
436
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRlS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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_
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi48ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
4
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
4
        }
435
4
        return status;
436
4
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
4
    Status static Error(std::string_view msg, Args&&... args) {
421
4
        Status status;
422
4
        status._code = code;
423
4
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
4
        } else {
427
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
4
        }
429
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
4
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
4
        return status;
436
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJcRmEEES0_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: _ZN5doris6Status5ErrorILi5ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKciS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
3
    Status static Error(std::string_view msg, Args&&... args) {
421
3
        Status status;
422
3
        status._code = code;
423
3
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
3
        } else {
427
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
3
        }
429
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
3
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
3
        return status;
436
3
    }
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
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
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: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlilS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlilS8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcRmSC_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
8
    Status static Error(std::string_view msg, Args&&... args) {
421
8
        Status status;
422
8
        status._code = code;
423
8
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
8
        } else {
427
8
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
8
        }
429
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
8
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
8
        return status;
436
8
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRimEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmmmmRKiRiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEilEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllmiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllEEES0_St17basic_string_viewIcS5_EDpOT1_
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_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRiRS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
17
    Status static Error(std::string_view msg, Args&&... args) {
421
17
        Status status;
422
17
        status._code = code;
423
17
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
17
        } else {
427
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
17
        }
429
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
17
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
17
        return status;
436
17
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
64
    Status static Error(std::string_view msg, Args&&... args) {
421
64
        Status status;
422
64
        status._code = code;
423
64
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
64
        } else {
427
64
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
64
        }
429
64
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
64
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
57
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
57
        }
435
64
        return status;
436
64
    }
_ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
25.6k
    Status static Error(std::string_view msg, Args&&... args) {
421
25.6k
        Status status;
422
25.6k
        status._code = code;
423
25.6k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
25.6k
        } else {
427
25.6k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
25.6k
        }
429
25.6k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
25.6k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
25.6k
        return status;
436
25.6k
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Line
Count
Source
420
669
    Status static Error(std::string_view msg, Args&&... args) {
421
669
        Status status;
422
669
        status._code = code;
423
669
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
669
        } else {
427
669
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
669
        }
429
669
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
669
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
669
        return status;
436
669
    }
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: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJlRKlS3_lNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
_ZN5doris6Status5ErrorILi101ELb1EJlRKlS3_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
2
    Status static Error(std::string_view msg, Args&&... args) {
421
2
        Status status;
422
2
        status._code = code;
423
2
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
2
        } else {
427
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
2
        }
429
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
2
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
2
        return status;
436
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
420
76
    Status static Error(std::string_view msg, Args&&... args) {
421
76
        Status status;
422
76
        status._code = code;
423
76
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
76
        } else {
427
76
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
76
        }
429
76
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
76
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
76
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
76
        }
435
76
        return status;
436
76
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1
    Status static Error(std::string_view msg, Args&&... args) {
421
1
        Status status;
422
1
        status._code = code;
423
1
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1
        } else {
427
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1
        }
429
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1
        return status;
436
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
1.12k
    Status static Error(std::string_view msg, Args&&... args) {
421
1.12k
        Status status;
422
1.12k
        status._code = code;
423
1.12k
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
1.12k
        } else {
427
1.12k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
1.12k
        }
429
1.12k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
1.12k
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
1.12k
        return status;
436
1.12k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
7
    Status static Error(std::string_view msg, Args&&... args) {
421
7
        Status status;
422
7
        status._code = code;
423
7
        status._err_msg = std::make_unique<ErrMsg>();
424
7
        if constexpr (sizeof...(args) == 0) {
425
7
            status._err_msg->_msg = msg;
426
        } else {
427
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
        }
429
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
7
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
7
        return status;
436
7
    }
_ZN5doris6Status5ErrorILin6002ELb1EJRPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
420
6
    Status static Error(std::string_view msg, Args&&... args) {
421
6
        Status status;
422
6
        status._code = code;
423
6
        status._err_msg = std::make_unique<ErrMsg>();
424
        if constexpr (sizeof...(args) == 0) {
425
            status._err_msg->_msg = msg;
426
6
        } else {
427
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
428
6
        }
429
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
430
6
            config::enable_stacktrace) {
431
            // Delete the first one frame pointers, which are inside the status.h
432
0
            status._err_msg->_stack = get_stack_trace(1);
433
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
434
0
        }
435
6
        return status;
436
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRA10_KcPS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRA12_KcPS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
437
438
    template <bool stacktrace = true, typename... Args>
439
1.88M
    Status static Error(int code, std::string_view msg, Args&&... args) {
440
1.88M
        Status status;
441
1.88M
        status._code = code;
442
1.88M
        status._err_msg = std::make_unique<ErrMsg>();
443
1.88M
        if constexpr (sizeof...(args) == 0) {
444
1.88M
            status._err_msg->_msg = msg;
445
1.88M
        } else {
446
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
447
2
        }
448
1.88M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
449
1.88M
            config::enable_stacktrace) {
450
37
            status._err_msg->_stack = get_stack_trace(1);
451
37
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
452
37
        }
453
1.88M
        return status;
454
1.88M
    }
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
439
1.57M
    Status static Error(int code, std::string_view msg, Args&&... args) {
440
1.57M
        Status status;
441
1.57M
        status._code = code;
442
1.57M
        status._err_msg = std::make_unique<ErrMsg>();
443
1.57M
        if constexpr (sizeof...(args) == 0) {
444
1.57M
            status._err_msg->_msg = msg;
445
        } else {
446
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
447
        }
448
1.60M
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
449
1.57M
            config::enable_stacktrace) {
450
37
            status._err_msg->_stack = get_stack_trace(1);
451
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
452
37
        }
453
1.57M
        return status;
454
1.57M
    }
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
439
310k
    Status static Error(int code, std::string_view msg, Args&&... args) {
440
310k
        Status status;
441
310k
        status._code = code;
442
310k
        status._err_msg = std::make_unique<ErrMsg>();
443
310k
        if constexpr (sizeof...(args) == 0) {
444
310k
            status._err_msg->_msg = msg;
445
        } else {
446
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
447
        }
448
310k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
449
310k
            config::enable_stacktrace) {
450
0
            status._err_msg->_stack = get_stack_trace(1);
451
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
452
0
        }
453
310k
        return status;
454
310k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status5ErrorILb1EJmRmRlS3_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS9_EEES0_iSt17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
439
2
    Status static Error(int code, std::string_view msg, Args&&... args) {
440
2
        Status status;
441
2
        status._code = code;
442
2
        status._err_msg = std::make_unique<ErrMsg>();
443
        if constexpr (sizeof...(args) == 0) {
444
            status._err_msg->_msg = msg;
445
2
        } else {
446
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
447
2
        }
448
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
449
2
            config::enable_stacktrace) {
450
0
            status._err_msg->_stack = get_stack_trace(1);
451
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
452
0
        }
453
2
        return status;
454
2
    }
455
456
2.19G
    static Status OK() { return {}; }
457
458
    template <bool stacktrace = true, typename... Args>
459
0
    static Status FatalError(std::string_view msg, Args&&... args) {
460
0
#ifndef NDEBUG
461
0
        LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...);
462
0
#endif
463
0
        return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...);
464
0
    }
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJEEES0_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: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_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: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmS9_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_
465
466
// default have stacktrace. could disable manually.
467
#define ERROR_CTOR(name, code)                                                       \
468
    template <bool stacktrace = true, typename... Args>                              \
469
307k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
307k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
307k
    }
_ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
16
    static Status name(std::string_view msg, Args&&... args) {                       \
470
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
16
    }
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
80
    static Status name(std::string_view msg, Args&&... args) {                       \
470
80
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
80
    }
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
44
    static Status name(std::string_view msg, Args&&... args) {                       \
470
44
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
44
    }
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
14
    static Status name(std::string_view msg, Args&&... args) {                       \
470
14
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
14
    }
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
73
    static Status name(std::string_view msg, Args&&... args) {                       \
470
73
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
73
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSt17basic_string_viewIcS5_EEEES0_SA_DpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
370
    static Status name(std::string_view msg, Args&&... args) {                       \
470
370
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
370
    }
_ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
19
    static Status name(std::string_view msg, Args&&... args) {                       \
470
19
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
19
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
48.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
48.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
48.0k
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
257
    static Status name(std::string_view msg, Args&&... args) {                       \
470
257
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
257
    }
_ZN5doris6Status10CorruptionILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
14
    static Status name(std::string_view msg, Args&&... args) {                       \
470
14
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
14
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
55
    static Status name(std::string_view msg, Args&&... args) {                       \
470
55
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
55
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
12
    static Status name(std::string_view msg, Args&&... args) {                       \
470
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
12
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
22
    static Status name(std::string_view msg, Args&&... args) {                       \
470
22
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
22
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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_
_ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
724
    static Status name(std::string_view msg, Args&&... args) {                       \
470
724
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
724
    }
_ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
551
    static Status name(std::string_view msg, Args&&... args) {                       \
470
551
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
551
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
13
    static Status name(std::string_view msg, Args&&... args) {                       \
470
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
13
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
13
    static Status name(std::string_view msg, Args&&... args) {                       \
470
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
13
    }
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
8
    static Status name(std::string_view msg, Args&&... args) {                       \
470
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
8
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
7
    static Status name(std::string_view msg, Args&&... args) {                       \
470
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
7
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
37
    static Status name(std::string_view msg, Args&&... args) {                       \
470
37
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
37
    }
_ZN5doris6Status10CorruptionILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
58
    static Status name(std::string_view msg, Args&&... args) {                       \
470
58
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
58
    }
_ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
9
    static Status name(std::string_view msg, Args&&... args) {                       \
470
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
9
    }
_ZN5doris6Status13InternalErrorILb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status12NotSupportedILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    static Status name(std::string_view msg, Args&&... args) {                       \
470
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
5
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
25
    static Status name(std::string_view msg, Args&&... args) {                       \
470
25
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
25
    }
_ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
9.46k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
9.46k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
9.46k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_RKjRKS7_RbbSC_bibbEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
31
    static Status name(std::string_view msg, Args&&... args) {                       \
470
31
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
31
    }
_ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
8
    static Status name(std::string_view msg, Args&&... args) {                       \
470
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
8
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
23
    static Status name(std::string_view msg, Args&&... args) {                       \
470
23
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
23
    }
_ZN5doris6Status7AbortedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
9
    static Status name(std::string_view msg, Args&&... args) {                       \
470
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
9
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1.78k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1.78k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1.78k
    }
_ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_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: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
114
    static Status name(std::string_view msg, Args&&... args) {                       \
470
114
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
114
    }
_ZN5doris6Status12NotSupportedILb1EJRmRKmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status13InternalErrorILb1EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status13InternalErrorILb1EJRPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status13InternalErrorILb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    static Status name(std::string_view msg, Args&&... args) {                       \
470
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
5
    }
_ZN5doris6Status13InternalErrorILb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
11
    static Status name(std::string_view msg, Args&&... args) {                       \
470
11
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
11
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_S2_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_SB_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_SD_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEEiRKNSt7__cxx1112basic_stringIcS5_SaIcEEESB_SB_mS2_PKcSB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_S2_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_SB_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_SD_SB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS5_SaIcEEEmSB_SB_mS2_PKcSB_EEES0_S6_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRKiRKmS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRS7_RKmS7_S7_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
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_mmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKS7_mmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RKmmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjRKjEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcS9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
29
    static Status name(std::string_view msg, Args&&... args) {                       \
470
29
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
29
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
16.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
16.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
16.1k
    }
_ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
27
    static Status name(std::string_view msg, Args&&... args) {                       \
470
27
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
27
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
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: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    static Status name(std::string_view msg, Args&&... args) {                       \
470
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
5
    }
_ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
_ZN5doris6Status9HttpErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
6
    static Status name(std::string_view msg, Args&&... args) {                       \
470
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
6
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
_ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
169
    static Status name(std::string_view msg, Args&&... args) {                       \
470
169
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
169
    }
_ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status12NotSupportedILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status12NotSupportedILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
13
    static Status name(std::string_view msg, Args&&... args) {                       \
470
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
13
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRllRKllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmRtRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESA_EEES0_S5_DpOT0_
Line
Count
Source
469
11
    static Status name(std::string_view msg, Args&&... args) {                       \
470
11
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
11
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7IOErrorILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status10CorruptionILb1EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
7
    static Status name(std::string_view msg, Args&&... args) {                       \
470
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
7
    }
_ZN5doris6Status10CorruptionILb1EJRKiRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
7
    static Status name(std::string_view msg, Args&&... args) {                       \
470
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
7
    }
_ZN5doris6Status10CorruptionILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
8
    static Status name(std::string_view msg, Args&&... args) {                       \
470
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
8
    }
_ZN5doris6Status10CorruptionILb1EJRlmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status10CorruptionILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status10CorruptionILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
6
    static Status name(std::string_view msg, Args&&... args) {                       \
470
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
6
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKiRKmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRiRKmS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    static Status name(std::string_view msg, Args&&... args) {                       \
470
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
4
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJbbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRKjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRjmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status10CorruptionILb1EJRKjmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRliEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlmmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKjmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmS2_RKlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status12NotSupportedILb1EJRKNS_10TPushAggOp4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlRjS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlRKlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
_ZN5doris6Status19MemoryLimitExceededILb1EJRPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRjRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmRKlEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
7
    static Status name(std::string_view msg, Args&&... args) {                       \
470
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
7
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRmRKmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS9_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA9_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRiRN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRijEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
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_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
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
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjjS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRPKcRlS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12RuntimeErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1.00k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1.00k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1.00k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRPKcS3_iKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_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_
_ZN5doris6Status13InternalErrorILb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
110
    static Status name(std::string_view msg, Args&&... args) {                       \
470
110
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
110
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8RpcErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb0EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmRmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status13InternalErrorILb0EJmRKmmS3_RKjRbRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    static Status name(std::string_view msg, Args&&... args) {                       \
470
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
5
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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: _ZN5doris6Status8NotFoundILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
227k
    static Status name(std::string_view msg, Args&&... args) {                       \
470
227k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
227k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbmRiEEES0_St17basic_string_viewIcS5_EDpOT0_
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
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status10CorruptionILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmRKjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjRKmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERmS7_EEES0_S5_DpOT0_
Line
Count
Source
469
8
    static Status name(std::string_view msg, Args&&... args) {                       \
470
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
8
    }
_ZN5doris6Status10CorruptionILb1EJhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJhRhS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJlRKmEEES0_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: _ZN5doris6Status10CorruptionILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmRmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v224HierarchicalDataIterator8ReadTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: unity_22_cxx.cxx:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_9EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_mS2_RiRKmEEES0_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: unity_22_cxx.cxx:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v24$_25ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRmmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRjmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_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_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: _ZN5doris6Status10CorruptionILb1EJRmRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjS2_S2_RmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_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
469
16
    static Status name(std::string_view msg, Args&&... args) {                       \
470
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
16
    }
_ZN5doris6Status10CorruptionILb1EJRjRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status10CorruptionILb1EJRjRmRKmS5_S5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
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_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKmS2_EEES0_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: _ZN5doris6Status13InternalErrorILb1EJRmjmN3fmt2v78arg_joinIN9__gnu_cxx17__normal_iteratorIPjSt6vectorIjSaIjEEEESC_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S2_S8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: unity_21_cxx.cxx:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v24$_20EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: unity_21_cxx.cxx:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v24$_17EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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
469
6
    static Status name(std::string_view msg, Args&&... args) {                       \
470
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
6
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
312
    static Status name(std::string_view msg, Args&&... args) {                       \
470
312
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
312
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlS7_S7_RKmmRKiSF_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJRmS2_RKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
4
    static Status name(std::string_view msg, Args&&... args) {                       \
470
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
4
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRPKcRmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRPKcRmRKmS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRKmmSB_RiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_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: _ZN5doris6Status19MemoryLimitExceededILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status19MemoryLimitExceededILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_S7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
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_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
_ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
25
    static Status name(std::string_view msg, Args&&... args) {                       \
470
25
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
25
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
65
    static Status name(std::string_view msg, Args&&... args) {                       \
470
65
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
65
    }
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: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
5
    static Status name(std::string_view msg, Args&&... args) {                       \
470
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
5
    }
_ZN5doris6Status13InternalErrorILb1EJRPKcRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Line
Count
Source
469
6
    static Status name(std::string_view msg, Args&&... args) {                       \
470
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
6
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8JniErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
4
    static Status name(std::string_view msg, Args&&... args) {                       \
470
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
4
    }
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_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_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKciS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
3
    static Status name(std::string_view msg, Args&&... args) {                       \
470
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
3
    }
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: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status8NotFoundILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
16
    static Status name(std::string_view msg, Args&&... args) {                       \
470
16
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
16
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlilS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlilS8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRimEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmmmmRKiRiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEilEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllmiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERllEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
469
2
    static Status name(std::string_view msg, Args&&... args) {                       \
470
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJlRKlS3_lNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
469
1
    static Status name(std::string_view msg, Args&&... args) {                       \
470
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
1
    }
_ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
469
76
    static Status name(std::string_view msg, Args&&... args) {                       \
470
76
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
471
76
    }
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_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
472
473
// default have no stacktrace. could enable manually.
474
#define ERROR_CTOR_NOSTACK(name, code)                                               \
475
    template <bool stacktrace = false, typename... Args>                             \
476
3.51M
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3.51M
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3.51M
    }
_ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
285k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
285k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
285k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
24
    static Status name(std::string_view msg, Args&&... args) {                       \
477
24
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
24
    }
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
146k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
146k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
146k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
36
    static Status name(std::string_view msg, Args&&... args) {                       \
477
36
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
36
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
361
    static Status name(std::string_view msg, Args&&... args) {                       \
477
361
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
361
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
188k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
188k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
188k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status11CgroupErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
90.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
90.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
90.0k
    }
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
81
    static Status name(std::string_view msg, Args&&... args) {                       \
477
81
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
81
    }
_ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2.59M
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2.59M
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2.59M
    }
_ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
476
4.66k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4.66k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4.66k
    }
_ZN5doris6Status15InvalidArgumentILb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
268
    static Status name(std::string_view msg, Args&&... args) {                       \
477
268
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
268
    }
_ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
_ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status16DataQualityErrorILb0EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
7
    static Status name(std::string_view msg, Args&&... args) {                       \
477
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
7
    }
_ZN5doris6Status16DataQualityErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
9
    static Status name(std::string_view msg, Args&&... args) {                       \
477
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
9
    }
_ZN5doris6Status16DataQualityErrorILb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
120
    static Status name(std::string_view msg, Args&&... args) {                       \
477
120
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
120
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
10
    static Status name(std::string_view msg, Args&&... args) {                       \
477
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
10
    }
_ZN5doris6Status15InvalidArgumentILb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
14
    static Status name(std::string_view msg, Args&&... args) {                       \
477
14
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
14
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4.44k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4.44k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4.44k
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
31
    static Status name(std::string_view msg, Args&&... args) {                       \
477
31
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
31
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
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: _ZN5doris6Status16DataQualityErrorILb0EJRliEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKijEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
81
    static Status name(std::string_view msg, Args&&... args) {                       \
477
81
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
81
    }
_ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
_ZN5doris6Status16DataQualityErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
219
    static Status name(std::string_view msg, Args&&... args) {                       \
477
219
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
219
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
11.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
11.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
11.1k
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidJsonPathILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status9CancelledILb0EJRKiPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status12TooManyTasksILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjjEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmRlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmRmS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
76
    static Status name(std::string_view msg, Args&&... args) {                       \
477
76
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
76
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
8
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEEmmEEES0_S5_DpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEPKcEEES0_S5_DpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
21
    static Status name(std::string_view msg, Args&&... args) {                       \
477
21
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
21
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
476
12
    static Status name(std::string_view msg, Args&&... args) {                       \
477
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
12
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
10
    static Status name(std::string_view msg, Args&&... args) {                       \
477
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
10
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
10
    static Status name(std::string_view msg, Args&&... args) {                       \
477
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
10
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
476
15
    static Status name(std::string_view msg, Args&&... args) {                       \
477
15
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
15
    }
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT0_
Line
Count
Source
476
6
    static Status name(std::string_view msg, Args&&... args) {                       \
477
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
6
    }
_ZN5doris6Status15InvalidJsonPathILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
_ZN5doris6Status15InvalidJsonPathILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
_ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcmRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
8
    }
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
387
    static Status name(std::string_view msg, Args&&... args) {                       \
477
387
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
387
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
476
6
    static Status name(std::string_view msg, Args&&... args) {                       \
477
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
6
    }
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_
Line
Count
Source
476
1.21k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1.21k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1.21k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
10
    static Status name(std::string_view msg, Args&&... args) {                       \
477
10
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
10
    }
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
7
    static Status name(std::string_view msg, Args&&... args) {                       \
477
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
7
    }
_ZN5doris6Status15InvalidArgumentILb0EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
5
    static Status name(std::string_view msg, Args&&... args) {                       \
477
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
5
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
7
    static Status name(std::string_view msg, Args&&... args) {                       \
477
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
7
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
12
    static Status name(std::string_view msg, Args&&... args) {                       \
477
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
12
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN8simdjson10error_codeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
_ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKN8simdjson10error_codeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status9EndOfFileILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRtRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status16DataQualityErrorILb0EJRPKcRlS5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS9_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS9_RKmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
_ZN5doris6Status16DataQualityErrorILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status16DataQualityErrorILb0EJRKjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJjjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKmS3_RmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcS5_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_RiEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
3
    static Status name(std::string_view msg, Args&&... args) {                       \
477
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
3
    }
_ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
8
    }
_ZN5doris6Status15InvalidArgumentILb0EJRlRKlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
2
    static Status name(std::string_view msg, Args&&... args) {                       \
477
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
2
    }
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
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_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRimRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKmSB_SB_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
179k
    static Status name(std::string_view msg, Args&&... args) {                       \
477
179k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
179k
    }
_ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
43
    static Status name(std::string_view msg, Args&&... args) {                       \
477
43
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
43
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNS_27PRerunFragmentParams_OpcodeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
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_
_ZN5doris6Status15InvalidArgumentILb0EJRKhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
4
    static Status name(std::string_view msg, Args&&... args) {                       \
477
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
4
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
_ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcRmSC_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
476
8
    static Status name(std::string_view msg, Args&&... args) {                       \
477
8
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
8
    }
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
476
1
    static Status name(std::string_view msg, Args&&... args) {                       \
477
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
478
1
    }
479
480
    ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT)
481
    ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED)
482
    ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED)
483
    ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT)
484
    ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH)
485
    ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE)
486
    ERROR_CTOR(Corruption, CORRUPTION)
487
    ERROR_CTOR(IOError, IO_ERROR)
488
    ERROR_CTOR(NotFound, NOT_FOUND)
489
    ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST)
490
    ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY)
491
    ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR)
492
    ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE)
493
    ERROR_CTOR(InternalError, INTERNAL_ERROR)
494
    ERROR_CTOR(RuntimeError, RUNTIME_ERROR)
495
    ERROR_CTOR(JniError, JNI_ERROR)
496
    ERROR_CTOR_NOSTACK(Cancelled, CANCELLED)
497
    ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED)
498
    ERROR_CTOR(RpcError, THRIFT_RPC_ERROR)
499
    ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT)
500
    ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS)
501
    ERROR_CTOR(Uninitialized, UNINITIALIZED)
502
    ERROR_CTOR(Aborted, ABORTED)
503
    ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR)
504
    ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED)
505
    ERROR_CTOR(HttpError, HTTP_ERROR)
506
    ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN)
507
    ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR)
508
    ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED)
509
    ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR)
510
#undef ERROR_CTOR
511
512
    template <int code>
513
132M
    bool is() const {
514
132M
        return code == _code;
515
132M
    }
_ZNK5doris6Status2isILi5EEEbv
Line
Count
Source
513
334k
    bool is() const {
514
334k
        return code == _code;
515
334k
    }
_ZNK5doris6Status2isILi3EEEbv
Line
Count
Source
513
60
    bool is() const {
514
60
        return code == _code;
515
60
    }
_ZNK5doris6Status2isILin3115EEEbv
Line
Count
Source
513
16
    bool is() const {
514
16
        return code == _code;
515
16
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv
_ZNK5doris6Status2isILi30EEEbv
Line
Count
Source
513
77.1M
    bool is() const {
514
77.1M
        return code == _code;
515
77.1M
    }
_ZNK5doris6Status2isILi8EEEbv
Line
Count
Source
513
20.3k
    bool is() const {
514
20.3k
        return code == _code;
515
20.3k
    }
_ZNK5doris6Status2isILi37EEEbv
Line
Count
Source
513
20.3k
    bool is() const {
514
20.3k
        return code == _code;
515
20.3k
    }
_ZNK5doris6Status2isILi11EEEbv
Line
Count
Source
513
138k
    bool is() const {
514
138k
        return code == _code;
515
138k
    }
_ZNK5doris6Status2isILi9EEEbv
Line
Count
Source
513
294k
    bool is() const {
514
294k
        return code == _code;
515
294k
    }
_ZNK5doris6Status2isILi76EEEbv
Line
Count
Source
513
294k
    bool is() const {
514
294k
        return code == _code;
515
294k
    }
_ZNK5doris6Status2isILi46EEEbv
Line
Count
Source
513
1.81M
    bool is() const {
514
1.81M
        return code == _code;
515
1.81M
    }
_ZNK5doris6Status2isILin259EEEbv
Line
Count
Source
513
2.55k
    bool is() const {
514
2.55k
        return code == _code;
515
2.55k
    }
_ZNK5doris6Status2isILi31EEEbv
Line
Count
Source
513
20.6M
    bool is() const {
514
20.6M
        return code == _code;
515
20.6M
    }
_ZNK5doris6Status2isILi42EEEbv
Line
Count
Source
513
1.73k
    bool is() const {
514
1.73k
        return code == _code;
515
1.73k
    }
_ZNK5doris6Status2isILi73EEEbv
Line
Count
Source
513
100
    bool is() const {
514
100
        return code == _code;
515
100
    }
_ZNK5doris6Status2isILin217EEEbv
Line
Count
Source
513
573
    bool is() const {
514
573
        return code == _code;
515
573
    }
_ZNK5doris6Status2isILin6004EEEbv
Line
Count
Source
513
1.03k
    bool is() const {
514
1.03k
        return code == _code;
515
1.03k
    }
_ZNK5doris6Status2isILin6007EEEbv
Line
Count
Source
513
12
    bool is() const {
514
12
        return code == _code;
515
12
    }
_ZNK5doris6Status2isILin6012EEEbv
Line
Count
Source
513
3.36k
    bool is() const {
514
3.36k
        return code == _code;
515
3.36k
    }
_ZNK5doris6Status2isILin6003EEEbv
Line
Count
Source
513
43
    bool is() const {
514
43
        return code == _code;
515
43
    }
_ZNK5doris6Status2isILi33EEEbv
Line
Count
Source
513
188
    bool is() const {
514
188
        return code == _code;
515
188
    }
_ZNK5doris6Status2isILi32EEEbv
Line
Count
Source
513
8.31M
    bool is() const {
514
8.31M
        return code == _code;
515
8.31M
    }
_ZNK5doris6Status2isILin241EEEbv
Line
Count
Source
513
1.00k
    bool is() const {
514
1.00k
        return code == _code;
515
1.00k
    }
_ZNK5doris6Status2isILi16EEEbv
Line
Count
Source
513
11
    bool is() const {
514
11
        return code == _code;
515
11
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi35EEEbv
_ZNK5doris6Status2isILin3002EEEbv
Line
Count
Source
513
4.14k
    bool is() const {
514
4.14k
        return code == _code;
515
4.14k
    }
_ZNK5doris6Status2isILin911EEEbv
Line
Count
Source
513
1
    bool is() const {
514
1
        return code == _code;
515
1
    }
_ZNK5doris6Status2isILin908EEEbv
Line
Count
Source
513
182
    bool is() const {
514
182
        return code == _code;
515
182
    }
_ZNK5doris6Status2isILin7000EEEbv
Line
Count
Source
513
7.63M
    bool is() const {
514
7.63M
        return code == _code;
515
7.63M
    }
_ZNK5doris6Status2isILin7001EEEbv
Line
Count
Source
513
3.70M
    bool is() const {
514
3.70M
        return code == _code;
515
3.70M
    }
_ZNK5doris6Status2isILin7002EEEbv
Line
Count
Source
513
11.4M
    bool is() const {
514
11.4M
        return code == _code;
515
11.4M
    }
_ZNK5doris6Status2isILi34EEEbv
Line
Count
Source
513
30
    bool is() const {
514
30
        return code == _code;
515
30
    }
_ZNK5doris6Status2isILin406EEEbv
Line
Count
Source
513
362
    bool is() const {
514
362
        return code == _code;
515
362
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv
_ZNK5doris6Status2isILi6EEEbv
Line
Count
Source
513
44
    bool is() const {
514
44
        return code == _code;
515
44
    }
_ZNK5doris6Status2isILin6001EEEbv
Line
Count
Source
513
60
    bool is() const {
514
60
        return code == _code;
515
60
    }
_ZNK5doris6Status2isILi39EEEbv
Line
Count
Source
513
227k
    bool is() const {
514
227k
        return code == _code;
515
227k
    }
_ZNK5doris6Status2isILin2010EEEbv
Line
Count
Source
513
176k
    bool is() const {
514
176k
        return code == _code;
515
176k
    }
_ZNK5doris6Status2isILin2000EEEbv
Line
Count
Source
513
340k
    bool is() const {
514
340k
        return code == _code;
515
340k
    }
_ZNK5doris6Status2isILin808EEEbv
Line
Count
Source
513
104k
    bool is() const {
514
104k
        return code == _code;
515
104k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv
_ZNK5doris6Status2isILin257EEEbv
Line
Count
Source
513
58
    bool is() const {
514
58
        return code == _code;
515
58
    }
_ZNK5doris6Status2isILin258EEEbv
Line
Count
Source
513
53
    bool is() const {
514
53
        return code == _code;
515
53
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv
_ZNK5doris6Status2isILi14EEEbv
Line
Count
Source
513
529
    bool is() const {
514
529
        return code == _code;
515
529
    }
_ZNK5doris6Status2isILi100EEEbv
Line
Count
Source
513
6
    bool is() const {
514
6
        return code == _code;
515
6
    }
_ZNK5doris6Status2isILi1EEEbv
Line
Count
Source
513
14
    bool is() const {
514
14
        return code == _code;
515
14
    }
_ZNK5doris6Status2isILin215EEEbv
Line
Count
Source
513
1
    bool is() const {
514
1
        return code == _code;
515
1
    }
_ZNK5doris6Status2isILin7311EEEbv
Line
Count
Source
513
37.3k
    bool is() const {
514
37.3k
        return code == _code;
515
37.3k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv
516
517
0
    void set_code(int code) { _code = code; }
518
519
2.36G
    bool ok() const { return _code == ErrorCode::OK; }
520
521
    // Convert into TStatus.
522
    void to_thrift(TStatus* status) const;
523
    TStatus to_thrift() const;
524
    void to_protobuf(PStatus* status) const;
525
526
    std::string to_string() const;
527
    std::string to_string_no_stack() const;
528
529
    /// @return A json representation of this status.
530
    std::string to_json() const;
531
532
365k
    int code() const { return _code; }
533
534
    /// Clone this status and add the specified prefix to the message.
535
    ///
536
    /// If this status is OK, then an OK status will be returned.
537
    ///
538
    /// @param [in] msg
539
    ///   The message to prepend.
540
    /// @return A ref to Status object
541
    Status& prepend(std::string_view msg);
542
543
    /// Add the specified suffix to the message.
544
    ///
545
    /// If this status is OK, then an OK status will be returned.
546
    ///
547
    /// @param [in] msg
548
    ///   The message to append.
549
    /// @return A ref to Status object
550
    Status& append(std::string_view msg);
551
552
    // if(!status) or if (status) will use this operator
553
214M
    operator bool() const { return this->ok(); }
554
555
    // Used like if ASSERT_EQ(res, Status::OK())
556
    // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state
557
    // ignore error messages during comparison
558
35.3k
    bool operator==(const Status& st) const { return _code == st._code; }
559
560
    // Used like if ASSERT_NE(res, Status::OK())
561
1.63M
    bool operator!=(const Status& st) const { return _code != st._code; }
562
563
    friend std::ostream& operator<<(std::ostream& ostr, const Status& status);
564
565
6.83M
    std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); }
566
567
0
    std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; }
568
569
private:
570
    int _code;
571
    struct ErrMsg {
572
        std::string _msg;
573
        std::string _stack;
574
    };
575
    std::unique_ptr<ErrMsg> _err_msg;
576
577
    std::string code_as_string() const;
578
};
579
580
// There are many thread using status to indicate the cancel state, one thread may update it and
581
// the other thread will read it. Status is not thread safe, for example, if one thread is update it
582
// and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and
583
// it is deconstructed during copy method.
584
// And also we could not use lock, because we need get status frequently to check if it is cancelled.
585
// The default value is ok.
586
class AtomicStatus {
587
public:
588
5.78M
    AtomicStatus() : error_st_(Status::OK()) {}
589
590
59.2M
    bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; }
591
592
468k
    bool update(const Status& new_status) {
593
        // If new status is normal, or the old status is abnormal, then not need update
594
468k
        if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) {
595
297k
            return false;
596
297k
        }
597
171k
        std::lock_guard l(mutex_);
598
171k
        if (error_code_.load(std::memory_order_acquire) != 0) {
599
1
            return false;
600
1
        }
601
171k
        error_st_ = new_status;
602
171k
        error_code_.store(static_cast<int16_t>(new_status.code()), std::memory_order_release);
603
171k
        return true;
604
171k
    }
605
606
17
    void reset() {
607
17
        std::lock_guard l(mutex_);
608
17
        error_st_ = Status::OK();
609
17
        error_code_ = 0;
610
17
    }
611
612
    // will copy a new status object to avoid concurrency
613
    // This stauts could only be called when ok==false
614
6.78M
    Status status() const {
615
6.78M
        std::lock_guard l(mutex_);
616
6.78M
        return error_st_;
617
6.78M
    }
618
619
    AtomicStatus(const AtomicStatus&) = delete;
620
    void operator=(const AtomicStatus&) = delete;
621
622
private:
623
    std::atomic_int16_t error_code_ = 0;
624
    Status error_st_;
625
    // mutex's lock is not a const method, but we will use this mutex in
626
    // some const method, so that it should be mutable.
627
    mutable std::mutex mutex_;
628
};
629
630
6.69M
inline std::ostream& operator<<(std::ostream& ostr, const Status& status) {
631
6.69M
    ostr << '[' << status.code_as_string() << ']';
632
6.69M
    ostr << status.msg();
633
6.69M
    if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) {
634
1.21k
        ostr << '\n' << status._err_msg->_stack;
635
1.21k
    }
636
6.69M
    return ostr;
637
6.69M
}
638
639
6.62M
inline std::string Status::to_string() const {
640
6.62M
    std::stringstream ss;
641
6.62M
    ss << *this;
642
6.62M
    return ss.str();
643
6.62M
}
644
645
529
inline std::string Status::to_string_no_stack() const {
646
529
    return fmt::format("[{}]{}", code_as_string(), msg());
647
529
}
648
649
// some generally useful macros
650
#define RETURN_IF_ERROR(stmt)           \
651
1.65G
    do {                                \
652
1.65G
        Status _status_ = (stmt);       \
unity_13_cxx.cxx:_ZZN5doris16SpillFileManager4initEvENK3$_0clEv
Line
Count
Source
652
210
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris25BucketedAggSinkLocalState4openEPNS_12RuntimeStateEENK3$_0clEv
Line
Count
Source
652
207k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
652
1.27k
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
652
122
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
18
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
10
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
272
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
14
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES7_
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES7_
Line
Count
Source
652
228
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
652
10
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
146
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb1EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
20
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
Line
Count
Source
652
800
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISC_vEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
26
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
58
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
8
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES7_
Line
Count
Source
652
42
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
652
26
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISD_NS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES7_
Line
Count
Source
652
12
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
46
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES7_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris21SetProbeSinkOperatorXILb0EE9sink_implEPNS_12RuntimeStateEPNS_5BlockEbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISC_EEEEEENS_6StatusES7_
Line
Count
Source
652
18
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
652
4.39k
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
652
36
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
48
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
10
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
408
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
38
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
12
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES8_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES8_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES8_
Line
Count
Source
652
278
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
170
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
8
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
8
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb1EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
20
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
652
4.46k
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISD_vEEEEEENS_6StatusES8_
Line
Count
Source
652
1.69k
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
28
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
12
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
170
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
28
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Line
Count
Source
652
12
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES8_
Line
Count
Source
652
68
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
652
72
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISE_NS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES8_
Line
Count
Source
652
14
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
192
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
8
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES8_
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
_ZZN5doris18SetSourceOperatorXILb0EE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPbENKUlOT_E_clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISD_EEEEEENS_6StatusES8_
Line
Count
Source
652
20
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
171
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
19
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS7_EERS5_IjSaIjEERS5_IbSaIbEEPSC_ENK3$_0clB5cxx11Ev
Line
Count
Source
652
672
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS7_EERS5_IjSaIjEERS5_IbSaIbEEPSC_ENK3$_1clB5cxx11Ev
Line
Count
Source
652
672
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv
Line
Count
Source
652
129k
        Status _status_ = (stmt);       \
unity_10_cxx.cxx:_ZZN5doris15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv
Line
Count
Source
652
300
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_0clB5cxx11Ev
Line
Count
Source
652
646
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_1clB5cxx11Ev
Line
Count
Source
652
646
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_2clB5cxx11Ev
Line
Count
Source
652
896
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner24_convert_to_output_blockEPNS_5BlockEENK3$_3clB5cxx11Ev
Line
Count
Source
652
896
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS_5BlockERKNS_23ExternalFileMappingInfoEPlSF_ENK3$_0clEv
Line
Count
Source
652
428
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS_5BlockERKNS_23ExternalFileMappingInfoEPlSF_ENK3$_1clEv
Line
Count
Source
652
598
        Status _status_ = (stmt);       \
unity_9_cxx.cxx:_ZZN5doris11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
4.39k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_
Line
Count
Source
652
19.5k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_
Line
Count
Source
652
1.38k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_
Line
Count
Source
652
737k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_
Line
Count
Source
652
276k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_
Line
Count
Source
652
46.5k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE8EEEEEDaOT_
Unexecuted instantiation: unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE9EEEEEDaOT_
Unexecuted instantiation: unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_
Line
Count
Source
652
20
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_
Line
Count
Source
652
3.99k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_
Line
Count
Source
652
2.10M
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_
Line
Count
Source
652
90
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_
Line
Count
Source
652
27.4k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_
Line
Count
Source
652
130
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_
Line
Count
Source
652
23.1k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE42EEEEEDaOT_
Line
Count
Source
652
34.4k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_
Line
Count
Source
652
440
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_
Line
Count
Source
652
66.1k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_
Line
Count
Source
652
4.63k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_
Line
Count
Source
652
5.22k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_
Line
Count
Source
652
14.0k
        Status _status_ = (stmt);       \
unity_5_cxx.cxx:_ZZN5doris18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRKNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_
Line
Count
Source
652
6.78k
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_ZZN5doris13TaskScheduler5startEvENK3$_0clEv
Line
Count
Source
652
3.50k
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_ZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEv
Line
Count
Source
652
32
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEvENKUlmE_clB5cxx11Em
Line
Count
Source
652
16
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_5BlockEPNS_19PRuntimeProfileTreeEPlSL_PmENK3$_0clEvENKUlmE0_clEm
Line
Count
Source
652
16
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_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_EEENS_2io19FileCacheMissPolicyERNS_5BlockEENK3$_3clEv
Line
Count
Source
652
3.64k
        Status _status_ = (stmt);       \
unity_8_cxx.cxx:_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_EEENS_2io19FileCacheMissPolicyERNS_5BlockEENK3$_4clEv
Line
Count
Source
652
4.42k
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_SG_EEDaSA_SB_SC_
Line
Count
Source
652
5
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_SF_IbLb1EEEEDaSA_SB_SC_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESF_IbLb1EESG_EEDaSA_SB_SC_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESF_IbLb1EESH_EEDaSA_SB_SC_
Line
Count
Source
652
20
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESF_IbLb0EESH_EEDaSA_SB_SC_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESF_IbLb0EESG_EEDaSA_SB_SC_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_SF_IbLb0EEEEDaSA_SB_SC_
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
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
652
144
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESE_IbLb1EEEEDaSA_SB_
Line
Count
Source
652
39
        Status _status_ = (stmt);       \
_ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESE_IbLb0EEEEDaSA_SB_
Line
Count
Source
652
21
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_EEDaSA_SB_
Unexecuted instantiation: unity_18_cxx.cxx:_ZZN5doris16JavaFunctionCall5closeEPNS_15FunctionContextENS1_18FunctionStateScopeEENK3$_0clEv
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
652
14
        Status _status_ = (stmt);       \
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
652
891
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_20EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
14
        Status _status_ = (stmt);       \
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
652
880
        Status _status_ = (stmt);       \
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
652
880
        Status _status_ = (stmt);       \
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
652
880
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
524
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
247
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
1.16k
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
1.06k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
1.39k
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
247
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
1.59k
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
849
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
1.88k
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
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
652
1.42k
        Status _status_ = (stmt);       \
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
652
1.48k
        Status _status_ = (stmt);       \
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
652
1.59k
        Status _status_ = (stmt);       \
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
652
1.60k
        Status _status_ = (stmt);       \
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
652
1.36k
        Status _status_ = (stmt);       \
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
652
1.38k
        Status _status_ = (stmt);       \
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
652
1.60k
        Status _status_ = (stmt);       \
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
652
1.61k
        Status _status_ = (stmt);       \
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
652
1.41k
        Status _status_ = (stmt);       \
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
652
1.47k
        Status _status_ = (stmt);       \
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
652
1.59k
        Status _status_ = (stmt);       \
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
652
1.60k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
35
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
322
        Status _status_ = (stmt);       \
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
652
210
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
4.16k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
483
        Status _status_ = (stmt);       \
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
652
387
        Status _status_ = (stmt);       \
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
652
777
        Status _status_ = (stmt);       \
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
652
308
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.07k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.02k
        Status _status_ = (stmt);       \
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
652
594
        Status _status_ = (stmt);       \
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
652
609
        Status _status_ = (stmt);       \
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
652
2.61k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
1.96k
        Status _status_ = (stmt);       \
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
652
819
        Status _status_ = (stmt);       \
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
652
287
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
721
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.09k
        Status _status_ = (stmt);       \
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
652
594
        Status _status_ = (stmt);       \
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
652
774
        Status _status_ = (stmt);       \
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
652
259
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
700
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_28EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.09k
        Status _status_ = (stmt);       \
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
652
594
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
487
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
225
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
59
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
626
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
62
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
78
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
59
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
1.19k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
62
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
312
        Status _status_ = (stmt);       \
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
652
247
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
7.02k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
296
        Status _status_ = (stmt);       \
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
652
148
        Status _status_ = (stmt);       \
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
652
225
        Status _status_ = (stmt);       \
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
652
284
        Status _status_ = (stmt);       \
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
652
234
        Status _status_ = (stmt);       \
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
652
1.15k
        Status _status_ = (stmt);       \
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
652
260
        Status _status_ = (stmt);       \
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
652
361
        Status _status_ = (stmt);       \
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
652
234
        Status _status_ = (stmt);       \
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
652
296
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.13k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
112
        Status _status_ = (stmt);       \
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
652
154
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
18.5k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
259
        Status _status_ = (stmt);       \
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
652
321
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
7
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
294
        Status _status_ = (stmt);       \
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
652
413
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
21.9M
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
819
        Status _status_ = (stmt);       \
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
652
969
        Status _status_ = (stmt);       \
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
652
336
        Status _status_ = (stmt);       \
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
652
168
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.64k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
1.75k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
652
78
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
652
556
        Status _status_ = (stmt);       \
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
652
798
        Status _status_ = (stmt);       \
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
652
462
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.29k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.52k
        Status _status_ = (stmt);       \
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
652
1.07k
        Status _status_ = (stmt);       \
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
652
796
        Status _status_ = (stmt);       \
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
652
427
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.26k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_29EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.45k
        Status _status_ = (stmt);       \
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
652
1.06k
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
526
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
853
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
726
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
328
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
146
        Status _status_ = (stmt);       \
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
652
342
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
11.6k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
247
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
201
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
18.7k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
210
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
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
652
612
        Status _status_ = (stmt);       \
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
652
940
        Status _status_ = (stmt);       \
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
652
2.62k
        Status _status_ = (stmt);       \
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
652
1.24k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.66k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
126
        Status _status_ = (stmt);       \
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
652
133
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
9.65k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
290
        Status _status_ = (stmt);       \
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
652
290
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.85k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
210
        Status _status_ = (stmt);       \
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
652
210
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
188k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
518
        Status _status_ = (stmt);       \
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
652
518
        Status _status_ = (stmt);       \
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
652
119
        Status _status_ = (stmt);       \
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
652
105
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
7.61k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
626
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
652
59
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
652
407
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
2.14k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
462
        Status _status_ = (stmt);       \
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
652
1.07k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
1.19M
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
1.04k
        Status _status_ = (stmt);       \
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
652
61.6k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.44k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
734
        Status _status_ = (stmt);       \
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
652
1.78k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.70k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS2_ILS3_30EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
2.58k
        Status _status_ = (stmt);       \
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
652
2.43k
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
33
        Status _status_ = (stmt);       \
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
652
14
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
1.59k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
293
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
139
        Status _status_ = (stmt);       \
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
652
342
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
286
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
118
        Status _status_ = (stmt);       \
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
652
279
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
406
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
124
        Status _status_ = (stmt);       \
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
652
337
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
652
28
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
305
        Status _status_ = (stmt);       \
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
652
805
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS_15DataTypeDecimalILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
652
296
        Status _status_ = (stmt);       \
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
652
830
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
1.62k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
126
        Status _status_ = (stmt);       \
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
652
133
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
4.05k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
290
        Status _status_ = (stmt);       \
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
652
290
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.82k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
210
        Status _status_ = (stmt);       \
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
652
210
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
8.26k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
518
        Status _status_ = (stmt);       \
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
652
518
        Status _status_ = (stmt);       \
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
652
105
        Status _status_ = (stmt);       \
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
652
105
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
2.28k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
407
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
Line
Count
Source
652
59
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
652
407
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
3.67k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
189
        Status _status_ = (stmt);       \
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
652
231
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
652
14.5k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS2_ILS3_35EEEE12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
652
487
        Status _status_ = (stmt);       \
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
652
549
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
2.34k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE0ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
386
        Status _status_ = (stmt);       \
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
652
1.32k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_EEDaSH_SI_
Line
Count
Source
652
5.72k
        Status _status_ = (stmt);       \
_ZZNK5doris10CastToImplILNS_12CastModeTypeE1ENS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES4_E12execute_implEPNS_15FunctionContextERNS_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESL_IbLb1EEEEDaSH_SI_
Line
Count
Source
652
854
        Status _status_ = (stmt);       \
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
652
1.83k
        Status _status_ = (stmt);       \
csv_reader.cpp:_ZZN5doris9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Line
Count
Source
652
136
        Status _status_ = (stmt);       \
csv_reader.cpp:_ZZN5doris9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Line
Count
Source
652
136
        Status _status_ = (stmt);       \
csv_reader.cpp:_ZZN5doris9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Line
Count
Source
652
594
        Status _status_ = (stmt);       \
csv_reader.cpp:_ZZN5doris9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Line
Count
Source
652
1.79k
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZZN5doris13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES2_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESA_EEENKUlvE_clB5cxx11Ev
Line
Count
Source
652
3
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZZN5doris13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES2_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESA_EEENKUlvE0_clB5cxx11Ev
Line
Count
Source
652
3
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZN5doris13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS_5BlockEmPbENK3$_0clB5cxx11Ev
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZN5doris13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS_5BlockEmPbENK3$_1clB5cxx11Ev
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZN5doris13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_PbENK3$_0clB5cxx11Ev
Line
Count
Source
652
318
        Status _status_ = (stmt);       \
new_json_reader.cpp:_ZZN5doris13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_PbENK3$_1clB5cxx11Ev
Line
Count
Source
652
106
        Status _status_ = (stmt);       \
unity_2_cxx.cxx:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
9
        Status _status_ = (stmt);       \
unity_2_cxx.cxx:_ZZN5doris2io14MultiTablePipe10exec_plansEPNS_7ExecEnvERKSt6vectorINS_23TPipelineFragmentParamsESaIS5_EEENK3$_0clEPNS_12RuntimeStateEPNS_6StatusE
Line
Count
Source
652
92
        Status _status_ = (stmt);       \
unity_26_cxx.cxx:_ZZN5doris10segment_v212_GLOBAL__N_114probe_and_planERNS0_20TransformExecContextERNS_13RowKeyEncoderERNS0_11MowKeyProbeERNS_20HistoricalRowFetcherERKSt6vectorISt10shared_ptrINS_6RowsetEESaISD_EERSA_ISt10unique_ptrINS_18SegmentCacheHandleESt14default_deleteISJ_EESaISM_EERKSA_IPNS_23IOlapColumnDataAccessorESaISR_EESR_PKamPNS_5BlockERSA_IbSaIbEERbENK3$_0clB5cxx11Ev
Line
Count
Source
652
36
        Status _status_ = (stmt);       \
unity_26_cxx.cxx:_ZZN5doris10segment_v212_GLOBAL__N_123probe_and_plan_flexibleERNS0_20TransformExecContextERNS_13RowKeyEncoderERNS0_11MowKeyProbeERNS_20HistoricalRowFetcherERKSt6vectorISt10shared_ptrINS_6RowsetEESaISD_EERSA_ISt10unique_ptrINS_18SegmentCacheHandleESt14default_deleteISJ_EESaISM_EERKSA_IPNS_23IOlapColumnDataAccessorESaISR_EESR_PKamPNS_5BlockERSA_INS_11BitmapValueESaIS10_EERSA_IbSaIbEERbENK3$_0clB5cxx11Ev
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
unity_25_cxx.cxx:_ZZN5doris10segment_v221VerticalSegmentWriter13_write_footerEvENK3$_0clERKSt6vectorINS_5SliceESaIS4_EE
Line
Count
Source
652
624
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV2ColumnWriter6finishEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
38
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV2ColumnWriter10write_dataEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
38
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV2ColumnWriter19write_ordinal_indexEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
38
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v216VariantDocWriter11append_dataEPKNS_12TabletColumnERKNS_13ColumnVariantEmPNS_22OlapBlockDataConvertorEENK3$_0clERNS0_12_GLOBAL__N_119SubcolumnWriteEntryERi
Line
Count
Source
652
106k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v216VariantDocWriter11append_dataEPKNS_12TabletColumnERKNS_13ColumnVariantEmPNS_22OlapBlockDataConvertorEENK3$_1clEi
Line
Count
Source
652
2.73k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter34_process_regular_doc_value_stagingEPNS_13ColumnVariantEPNS_22OlapBlockDataConvertorEmRiENK3$_0clERNS0_12_GLOBAL__N_119SubcolumnWriteEntryES6_
Line
Count
Source
652
5.69k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter34_process_regular_doc_value_stagingEPNS_13ColumnVariantEPNS_22OlapBlockDataConvertorEmRiENK3$_1clES6_
Line
Count
Source
652
14.5k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter8finalizeEvENK3$_0clERKNS0_12_GLOBAL__N_127ExtractedColumnsOwnDataPlanE
Line
Count
Source
652
404
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter8finalizeEvENK3$_3clERKNS0_12_GLOBAL__N_128ParseTimeSubcolumnsWritePlanE
Line
Count
Source
652
5.88k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter8finalizeEvENK3$_1clERKNS0_12_GLOBAL__N_124DocValueStagingWritePlanE
Line
Count
Source
652
1.32k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter8finalizeEvENK3$_2clERKNS0_12_GLOBAL__N_127PersistentDocValueWritePlanE
Line
Count
Source
652
2.73k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter6finishEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
18.3k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter10write_dataEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
18.3k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v221VariantV1ColumnWriter19write_ordinal_indexEvENK3$_0clEPNS0_12ColumnWriterE
Line
Count
Source
652
18.3k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v223VariantDocCompactWriter12_finalize_v1ERKNS_12TabletColumnEmPNS_22OlapBlockDataConvertorERiENK3$_0clERNS0_12_GLOBAL__N_119SubcolumnWriteEntryES7_
Line
Count
Source
652
11.1k
        Status _status_ = (stmt);       \
unity_24_cxx.cxx:_ZZN5doris10segment_v223VariantDocCompactWriter12_finalize_v1ERKNS_12TabletColumnEmPNS_22OlapBlockDataConvertorERiENK3$_1clEi
Line
Count
Source
652
7.33k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_24_cxx.cxx:_ZZN5doris10segment_v232VariantStreamingCompactionWriter6finishEvENK3$_0clEPNS0_12ColumnWriterE
Unexecuted instantiation: unity_24_cxx.cxx:_ZZN5doris10segment_v232VariantStreamingCompactionWriter10write_dataEvENK3$_0clEPNS0_12ColumnWriterE
Unexecuted instantiation: unity_24_cxx.cxx:_ZZN5doris10segment_v232VariantStreamingCompactionWriter19write_ordinal_indexEvENK3$_0clEPNS0_12ColumnWriterE
unity_23_cxx.cxx:_ZZN5doris10segment_v213SegmentWriter13_write_footerEvENK3$_0clERKSt6vectorINS_5SliceESaIS4_EE
Line
Count
Source
652
426k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v227BinaryColumnExtractIterator10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS4_EEPbENK3$_0clEv
Line
Count
Source
652
2.16k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator6createEPSt10unique_ptrINS0_14ColumnIteratorESt14default_deleteIS3_EEiNS_10PathInDataEPKNS_14SubcolumnsTreeINS0_13SubcolumnMetaELb1EE4NodeEOS2_INS0_17SubstreamIteratorES4_ISF_EESI_PNS0_17ColumnReaderCacheEPNS_20OlapReaderStatisticsENS1_8ReadTypeEbPKNS_2io9IOContextEENK3$_0clERNS9_ISF_Lb0EE4NodeE
Line
Count
Source
652
51
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
652
122k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator15seek_to_ordinalEmENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
652
50.9k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS4_EEPbENK3$_0clERNS0_17SubstreamIteratorERKNS_10PathInDataERKSt10shared_ptrIKNS_9IDataTypeEES9_
Line
Count
Source
652
156k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS5_EEPbE3$_0EENS_6StatusEOT_S9_mbS3_SA_ENKUlRNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESJ_
Line
Count
Source
652
50.9k
        Status _status_ = (stmt);       \
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_7IColumnEE11mutable_ptrIS6_EEE3$_0EENS_6StatusEOT_SA_mbPmPbENKUlRNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESL_
Line
Count
Source
652
69.2k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator15init_prefetcherERKNS0_21SegmentPrefetchParamsEENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
unity_23_cxx.cxx:_ZZN5doris10segment_v224HierarchicalDataIterator15_init_containerERNS_3COWINS_7IColumnEE11mutable_ptrIS3_EEmibENK3$_0clERNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
652
239k
        Status _status_ = (stmt);       \
_ZZN5doris10segment_v225SparseColumnMergeIterator10next_batchEPmRNS_3COWINS_7IColumnEE11mutable_ptrIS4_EEPbENKUlPNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESE_
Line
Count
Source
652
32
        Status _status_ = (stmt);       \
_ZZN5doris10segment_v225SparseColumnMergeIterator14read_by_rowidsEPKjmRNS_3COWINS_7IColumnEE11mutable_ptrIS5_EEENKUlPNS_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESE_
Line
Count
Source
652
121
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_22_cxx.cxx:_ZZN5doris10segment_v227PrimaryKeyModelRowRetriever35materialize_flexible_partial_updateEPNS_5BlockESt10shared_ptrINS_10MowContextEEPSt6vectorIlSaIlEEENK3$_0clB5cxx11Ev
unity_22_cxx.cxx:_ZZN5doris10segment_v27Segment18new_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_13IndexIteratorESt14default_deleteISC_EEENK3$_0clEv
Line
Count
Source
652
21.5k
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv
Line
Count
Source
652
10
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv
Line
Count
Source
652
6
        Status _status_ = (stmt);       \
unity_19_cxx.cxx:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEbPNS_20OlapReaderStatisticsEPKNS_2io9IOContextEENK3$_0clEv
Line
Count
Source
652
803k
        Status _status_ = (stmt);       \
unity_17_cxx.cxx:_ZZN5doris4snii6writer18LogicalIndexWriter12build_blocksEvENK3$_0clEONS1_20StreamedTermPostingsE
Line
Count
Source
652
7.13k
        Status _status_ = (stmt);       \
unity_16_cxx.cxx:_ZZN5doris4snii5query8internal26visit_expanded_plain_termsERKNS0_6reader18LogicalIndexReaderESt17basic_string_viewIcSt11char_traitsIcEERKSt8functionIFbSA_EERKSB_IFNS_6StatusEONS4_9PrefixHitEPbEEiENK3$_1clESI_SJ_
Line
Count
Source
652
16.5k
        Status _status_ = (stmt);       \
unity_16_cxx.cxx:_ZZN5doris4snii5query8internal25emit_expanded_docid_unionERKNS0_6reader18LogicalIndexReaderESt17basic_string_viewIcSt11char_traitsIcEERKSt8functionIFbSA_EEPNS1_9DocIdSinkEiENK3$_0clEONS4_9PrefixHitEPb
Line
Count
Source
652
1.07k
        Status _status_ = (stmt);       \
unity_16_cxx.cxx:_ZZNK5doris4snii6reader18LogicalIndexReader18visit_prefix_termsESt17basic_string_viewIcSt11char_traitsIcEERKSt8functionIFNS_6StatusEONS2_9PrefixHitEPbEEPNS1_14DictBlockCacheEENK3$_0clEONS0_6format9DictEntryESB_
Line
Count
Source
652
47.7k
        Status _status_ = (stmt);       \
unity_16_cxx.cxx:_ZZNK5doris4snii6reader18LogicalIndexReader16visit_term_rangeESt17basic_string_viewIcSt11char_traitsIcEESt8optionalIS6_ERKSt8functionIFNS_6StatusEONS2_9PrefixHitEPbEEPNS1_14DictBlockCacheEENK3$_0clEONS0_6format9DictEntryESD_
Line
Count
Source
652
30
        Status _status_ = (stmt);       \
unity_15_cxx.cxx:_ZZN5doris4snii5query11phrase_impl24phrase_prefix_query_implERKNS0_6reader18LogicalIndexReaderERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISD_EEPS7_IjSaIjEEiPNS0_6format16PrxDecodeContextEPNS2_24CommonGramsPlanningTimerEPS7_INS1_11PhraseMatchESaISQ_EEENK3$_0clESt17basic_string_viewIcSB_E
Line
Count
Source
652
5.44k
        Status _status_ = (stmt);       \
unity_15_cxx.cxx:_ZZN5doris4snii5query11phrase_impl24phrase_prefix_query_implERKNS0_6reader18LogicalIndexReaderERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISD_EEPS7_IjSaIjEEiPNS0_6format16PrxDecodeContextEPNS2_24CommonGramsPlanningTimerEPS7_INS1_11PhraseMatchESaISQ_EEENK3$_1clEONS4_9PrefixHitEPb
Line
Count
Source
652
5.44k
        Status _status_ = (stmt);       \
unity_15_cxx.cxx:_ZZZN5doris4snii5query11phrase_impl32planned_phrase_prefix_query_implERKNS0_6reader18LogicalIndexReaderERKNS_10segment_v222InvertedIndexQueryInfoESA_PKNS7_14inverted_index24CommonGramsQueryIdentityEPSt6vectorIjSaIjEEiPNS0_6format16PrxDecodeContextEPNS1_20PhrasePrefixPlanKindENSB_24CommonGramsPlanCostModelENS1_28CommonGramsPlanDebugOverrideEENK3$_0clEvENKUlSt17basic_string_viewIcSt11char_traitsIcEEE_clESU_
Line
Count
Source
652
109
        Status _status_ = (stmt);       \
unity_15_cxx.cxx:_ZZZN5doris4snii5query11phrase_impl32planned_phrase_prefix_query_implERKNS0_6reader18LogicalIndexReaderERKNS_10segment_v222InvertedIndexQueryInfoESA_PKNS7_14inverted_index24CommonGramsQueryIdentityEPSt6vectorIjSaIjEEiPNS0_6format16PrxDecodeContextEPNS1_20PhrasePrefixPlanKindENSB_24CommonGramsPlanCostModelENS1_28CommonGramsPlanDebugOverrideEENK3$_0clEvENKUlONS4_9PrefixHitEPbE_clESS_ST_
Line
Count
Source
652
109
        Status _status_ = (stmt);       \
unity_12_cxx.cxx:_ZZN5doris4snii10compaction20SniiPlainT2MergePlan7prepareESt6vectorIPKNS0_6reader18LogicalIndexReaderESaIS7_EERKNS1_24ValidatedRowIdConversionERKNS1_25SniiCompactionEligibilityEmSt10shared_ptrINS0_6writer14MemoryReporterEEPSt10unique_ptrIS2_St14default_deleteIS2_EEENK3$_0clEm
Line
Count
Source
652
21
        Status _status_ = (stmt);       \
unity_11_cxx.cxx:_ZZN5doris4snii10compaction12_GLOBAL__N_120reject_legacy_bigramERKNS0_6reader18LogicalIndexReaderEmENK3$_0clEONS4_9PrefixHitEPb
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
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
unity_2_cxx.cxx:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv
Line
Count
Source
652
7
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_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
652
7.43M
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
135
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris16StreamLoadAction7_handleESt10shared_ptrINS_17StreamLoadContextEEPNS_11HttpRequestEENK3$_0clES3_
Line
Count
Source
652
17
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
2.39k
        Status _status_ = (stmt);       \
unity_2_cxx.cxx:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv
Line
Count
Source
652
184
        Status _status_ = (stmt);       \
unity_2_cxx.cxx:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
2.01k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_2_cxx.cxx:_ZZN5doris18StreamLoadExecutor14pre_commit_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
unity_2_cxx.cxx:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
54
        Status _status_ = (stmt);       \
unity_2_cxx.cxx:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
1.69k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_1_cxx.cxx:_ZZN5doris10WalManager18_replay_backgroundEvENK3$_0clEv
Unexecuted instantiation: unity_1_cxx.cxx:_ZZN5doris8WalTable16_get_column_infoEllRSt3mapIlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIlESaISt4pairIKlS7_EEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: unity_1_cxx.cxx:_ZZN5doris16determine_wal_fsEllRSt10shared_ptrINS_2io10FileSystemEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: unity_1_cxx.cxx:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv
unity_0_cxx.cxx:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv
Line
Count
Source
652
174
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlNS_20TabletAddRowsPayloadESt4hashIlESt8equal_toIlESaISt4pairIKlS5_EEEPNS_27PTabletWriterAddBlockResultEENK3$_0clEPNS_15BaseDeltaWriterE
Line
Count
Source
652
109k
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
606
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris39SchemaAuthenticationIntegrationsScanner46_get_authentication_integrations_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
2
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris23SchemaExtensionsScanner29_get_extensions_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
4
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris25SchemaRoleMappingsScanner32_get_role_mappings_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
3
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv
Line
Count
Source
652
47.5k
        Status _status_ = (stmt);       \
Unexecuted instantiation: unity_0_cxx.cxx:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv
unity_0_cxx.cxx:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv
Line
Count
Source
652
7.65k
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris35SchemaTableStreamConsumptionScanner43_get_table_stream_consumption_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
3
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris25SchemaTableStreamsScanner32_get_table_streams_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
9
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris22SchemaTsoStatusScanner29_get_tso_status_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris27SchemaViewDependencyScanner34_get_view_dependency_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
8
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
13
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
24
        Status _status_ = (stmt);       \
unity_0_cxx.cxx:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Line
Count
Source
652
9
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseERKSt6vectorIlSaIlEEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESK_
Line
Count
Source
652
9.58k
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
unity_1_cxx.cxx:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Line
Count
Source
652
1
        Status _status_ = (stmt);       \
653
1.65G
        if (UNLIKELY(!_status_.ok())) { \
654
540k
            return _status_;            \
655
540k
        }                               \
656
1.65G
    } while (false)
657
658
#define PROPAGATE_FALSE(stmt)                     \
659
7.53M
    do {                                          \
660
7.53M
        if (UNLIKELY(!static_cast<bool>(stmt))) { \
661
93.0k
            return false;                         \
662
93.0k
        }                                         \
663
7.53M
    } while (false)
664
665
#define THROW_IF_ERROR(stmt)            \
666
6.38M
    do {                                \
667
6.38M
        Status _status_ = (stmt);       \
668
6.38M
        if (UNLIKELY(!_status_.ok())) { \
669
3
            throw Exception(_status_);  \
670
3
        }                               \
671
6.38M
    } while (false)
672
673
#define RETURN_IF_STATUS_ERROR(status, stmt) \
674
107k
    do {                                     \
675
107k
        status = (stmt);                     \
676
107k
        if (UNLIKELY(!status.ok())) {        \
677
0
            return;                          \
678
0
        }                                    \
679
107k
    } while (false)
680
681
#define EXIT_IF_ERROR(stmt)             \
682
28
    do {                                \
683
28
        Status _status_ = (stmt);       \
684
28
        if (UNLIKELY(!_status_.ok())) { \
685
0
            LOG(ERROR) << _status_;     \
686
0
            exit(1);                    \
687
0
        }                               \
688
28
    } while (false)
689
690
#define RETURN_FALSE_IF_ERROR(stmt)   \
691
251
    do {                              \
692
251
        Status status = (stmt);       \
693
251
        if (UNLIKELY(!status.ok())) { \
694
1
            return false;             \
695
1
        }                             \
696
251
    } while (false)
697
698
/// @brief Emit a warning if @c to_call returns a bad status.
699
#define WARN_IF_ERROR(to_call, warning_prefix)              \
700
304k
    do {                                                    \
701
304k
        Status _s = (to_call);                              \
702
304k
        if (UNLIKELY(!_s.ok())) {                           \
703
39
            LOG(WARNING) << (warning_prefix) << ": " << _s; \
704
39
        }                                                   \
705
304k
    } while (false);
706
707
#define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix)       \
708
1.26M
    do {                                                           \
709
1.26M
        Status _s = (stmt);                                        \
710
1.26M
        if (UNLIKELY(!_s.ok())) {                                  \
711
5
            LOG(WARNING) << (warning_prefix) << ", error: " << _s; \
712
5
            return _s;                                             \
713
5
        }                                                          \
714
1.26M
    } while (false);
715
716
template <typename T>
717
using Result = expected<T, Status>;
718
719
using ResultError = unexpected<Status>;
720
721
#define RETURN_IF_ERROR_RESULT(stmt)                \
722
3.05M
    do {                                            \
723
3.05M
        Status _status_ = (stmt);                   \
unity_2_cxx.cxx:_ZZNK5doris11CloudTablet41capture_versions_with_freshness_toleranceERKNS_7VersionERKNS_16CaptureRowsetOpsEENK3$_0clEll
Line
Count
Source
723
71
        Status _status_ = (stmt);                   \
unity_2_cxx.cxx:_ZZNK5doris11CloudTablet41capture_versions_with_freshness_toleranceERKNS_7VersionERKNS_16CaptureRowsetOpsEENK3$_1clEll
Line
Count
Source
723
67
        Status _status_ = (stmt);                   \
724
3.05M
        if (UNLIKELY(!_status_.ok())) {             \
725
39
            return unexpected(std::move(_status_)); \
726
39
        }                                           \
727
3.05M
    } while (false)
728
729
#define DORIS_TRY(stmt)                              \
730
45.3M
    ({                                               \
731
45.3M
        auto&& try_res = (stmt);                     \
_ZZN5doris35TaskExecutorSimplifiedScanScheduler16submit_scan_taskENS_18SimplifiedScanTaskERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEENKUlvE_clEv
Line
Count
Source
731
2.14k
        auto&& try_res = (stmt);                     \
unity_9_cxx.cxx:_ZZN5doris14ScannerContext4initEvENK3$_0clEv
Line
Count
Source
731
1.74M
        auto&& try_res = (stmt);                     \
732
45.3M
        using T = std::decay_t<decltype(try_res)>;   \
733
45.3M
        if (!try_res.has_value()) [[unlikely]] {     \
734
227k
            return std::forward<T>(try_res).error(); \
735
227k
        }                                            \
736
45.3M
        std::forward<T>(try_res).value();            \
737
45.0M
    });
738
739
#define TEST_TRY(stmt)                                                                          \
740
    ({                                                                                          \
741
        auto&& res = (stmt);                                                                    \
742
        using T = std::decay_t<decltype(res)>;                                                  \
743
        if (!res.has_value()) [[unlikely]] {                                                    \
744
            ASSERT_TRUE(res.has_value()) << "Expected success, but got error: " << res.error(); \
745
        }                                                                                       \
746
        std::forward<T>(res).value();                                                           \
747
    })
748
749
#define TEST_RESULT_ERROR(stmt)                                                                   \
750
    ({                                                                                            \
751
        auto&& _result_ = (stmt);                                                                 \
752
        using _result_t = std::decay_t<decltype(_result_)>;                                       \
753
        if (_result_.has_value()) [[unlikely]] {                                                  \
754
            ASSERT_FALSE(_result_.has_value()) << "Expected ResultError, but got success result"; \
755
        }                                                                                         \
756
        std::forward<_result_t>(_result_).error();                                                \
757
    })
758
759
} // namespace doris
760
761
// specify formatter for Status
762
template <>
763
struct fmt::formatter<doris::Status> {
764
    template <typename ParseContext>
765
235
    constexpr auto parse(ParseContext& ctx) {
766
235
        return ctx.begin();
767
235
    }
768
769
    template <typename FormatContext>
770
235
    auto format(doris::Status const& status, FormatContext& ctx) {
771
235
        return fmt::format_to(ctx.out(), "{}", status.to_string());
772
235
    }
773
};