Coverage Report

Created: 2025-09-15 19:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/common/status.h
Line
Count
Source
1
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
#pragma once
6
7
#include <fmt/format.h>
8
#include <gen_cpp/Status_types.h> // for TStatus
9
#include <gen_cpp/types.pb.h>
10
#include <glog/logging.h>
11
12
#include <cstdint>
13
#include <iostream>
14
#include <memory>
15
#include <string>
16
#include <string_view>
17
#include <utility>
18
19
#include "common/compiler_util.h" // IWYU pragma: keep
20
#include "common/config.h"
21
#include "common/expected.h"
22
#include "util/stack_util.h"
23
24
namespace doris {
25
26
namespace io {
27
struct ObjectStorageStatus;
28
}
29
30
class Status;
31
32
extern io::ObjectStorageStatus convert_to_obj_response(Status st);
33
34
class PStatus;
35
36
namespace ErrorCode {
37
38
// E thrift_error_name, print_stacktrace
39
#define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError)        \
40
1
    TStatusError(PUBLISH_TIMEOUT, false);                 \
41
1
    TStatusError(MEM_ALLOC_FAILED, true);                 \
42
1
    TStatusError(BUFFER_ALLOCATION_FAILED, true);         \
43
1
    TStatusError(INVALID_ARGUMENT, false);                \
44
1
    TStatusError(INVALID_JSON_PATH, false);               \
45
1
    TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true);  \
46
1
    TStatusError(CORRUPTION, true);                       \
47
1
    TStatusError(IO_ERROR, true);                         \
48
1
    TStatusError(NOT_FOUND, true);                        \
49
1
    TStatusError(ALREADY_EXIST, true);                    \
50
1
    TStatusError(DIRECTORY_NOT_EMPTY, true);              \
51
1
    TStatusError(NOT_IMPLEMENTED_ERROR, false);           \
52
1
    TStatusError(END_OF_FILE, false);                     \
53
1
    TStatusError(INTERNAL_ERROR, true);                   \
54
1
    TStatusError(RUNTIME_ERROR, true);                    \
55
1
    TStatusError(JNI_ERROR, true);                        \
56
1
    TStatusError(CANCELLED, false);                       \
57
1
    TStatusError(ANALYSIS_ERROR, false);                  \
58
1
    TStatusError(MEM_LIMIT_EXCEEDED, false);              \
59
1
    TStatusError(THRIFT_RPC_ERROR, true);                 \
60
1
    TStatusError(TIMEOUT, true);                          \
61
1
    TStatusError(LIMIT_REACH, false);                     \
62
1
    TStatusError(TOO_MANY_TASKS, true);                   \
63
1
    TStatusError(UNINITIALIZED, false);                   \
64
1
    TStatusError(INCOMPLETE, false);                      \
65
1
    TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \
66
1
    TStatusError(ABORTED, false);                         \
67
1
    TStatusError(DATA_QUALITY_ERROR, false);              \
68
1
    TStatusError(LABEL_ALREADY_EXISTS, true);             \
69
1
    TStatusError(NOT_AUTHORIZED, true);                   \
70
1
    TStatusError(BINLOG_DISABLE, false);                  \
71
1
    TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false);       \
72
1
    TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false);       \
73
1
    TStatusError(BINLOG_NOT_FOUND_DB, false);             \
74
1
    TStatusError(BINLOG_NOT_FOUND_TABLE, false);          \
75
1
    TStatusError(NETWORK_ERROR, false);                   \
76
1
    TStatusError(ILLEGAL_STATE, false);                   \
77
1
    TStatusError(SNAPSHOT_NOT_EXIST, true);               \
78
1
    TStatusError(HTTP_ERROR, true);                       \
79
1
    TStatusError(TABLET_MISSING, true);                   \
80
1
    TStatusError(NOT_MASTER, true);                       \
81
1
    TStatusError(OBTAIN_LOCK_FAILED, false);              \
82
1
    TStatusError(SNAPSHOT_EXPIRED, false);                \
83
1
    TStatusError(DELETE_BITMAP_LOCK_ERROR, false);
84
// E error_name, error_code, print_stacktrace
85
#define APPLY_FOR_OLAP_ERROR_CODES(E)                        \
86
1
    E(OK, 0, false);                                         \
87
1
    E(CALL_SEQUENCE_ERROR, -202, true);                      \
88
1
    E(BUFFER_OVERFLOW, -204, true);                          \
89
1
    E(CONFIG_ERROR, -205, true);                             \
90
1
    E(INIT_FAILED, -206, true);                              \
91
1
    E(INVALID_SCHEMA, -207, true);                           \
92
1
    E(CHECKSUM_ERROR, -208, true);                           \
93
1
    E(SIGNATURE_ERROR, -209, true);                          \
94
1
    E(CATCH_EXCEPTION, -210, true);                          \
95
1
    E(PARSE_PROTOBUF_ERROR, -211, true);                     \
96
1
    E(SERIALIZE_PROTOBUF_ERROR, -212, true);                 \
97
1
    E(WRITE_PROTOBUF_ERROR, -213, true);                     \
98
1
    E(VERSION_NOT_EXIST, -214, false);                       \
99
1
    E(TABLE_NOT_FOUND, -215, true);                          \
100
1
    E(TRY_LOCK_FAILED, -216, false);                         \
101
1
    E(EXCEEDED_LIMIT, -217, false);                          \
102
1
    E(OUT_OF_BOUND, -218, false);                            \
103
1
    E(INVALID_ROOT_PATH, -222, true);                        \
104
1
    E(NO_AVAILABLE_ROOT_PATH, -223, true);                   \
105
1
    E(CHECK_LINES_ERROR, -224, true);                        \
106
1
    E(INVALID_CLUSTER_INFO, -225, true);                     \
107
1
    E(TRANSACTION_NOT_EXIST, -226, false);                   \
108
1
    E(DISK_FAILURE, -227, true);                             \
109
1
    E(TRANSACTION_ALREADY_COMMITTED, -228, false);           \
110
1
    E(TRANSACTION_ALREADY_VISIBLE, -229, false);             \
111
1
    E(VERSION_ALREADY_MERGED, -230, true);                   \
112
1
    E(LZO_DISABLED, -231, true);                             \
113
1
    E(DISK_REACH_CAPACITY_LIMIT, -232, true);                \
114
1
    E(TOO_MANY_TRANSACTIONS, -233, false);                   \
115
1
    E(INVALID_SNAPSHOT_VERSION, -234, true);                 \
116
1
    E(TOO_MANY_VERSION, -235, false);                        \
117
1
    E(NOT_INITIALIZED, -236, true);                          \
118
1
    E(ALREADY_CANCELLED, -237, false);                       \
119
1
    E(TOO_MANY_SEGMENTS, -238, false);                       \
120
1
    E(ALREADY_CLOSED, -239, false);                          \
121
1
    E(SERVICE_UNAVAILABLE, -240, true);                      \
122
1
    E(NEED_SEND_AGAIN, -241, false);                         \
123
1
    E(OS_ERROR, -242, true);                                 \
124
1
    E(DIR_NOT_EXIST, -243, true);                            \
125
1
    E(CREATE_FILE_ERROR, -245, true);                        \
126
1
    E(STL_ERROR, -246, true);                                \
127
1
    E(MUTEX_ERROR, -247, true);                              \
128
1
    E(PTHREAD_ERROR, -248, true);                            \
129
1
    E(UB_FUNC_ERROR, -250, true);                            \
130
1
    E(COMPRESS_ERROR, -251, true);                           \
131
1
    E(DECOMPRESS_ERROR, -252, true);                         \
132
1
    E(FILE_ALREADY_EXIST, -253, true);                       \
133
1
    E(BAD_CAST, -254, true);                                 \
134
1
    E(ARITHMETIC_OVERFLOW_ERRROR, -255, false);              \
135
1
    E(PERMISSION_DENIED, -256, false);                       \
136
1
    E(QUERY_MEMORY_EXCEEDED, -257, false);                   \
137
1
    E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false);          \
138
1
    E(PROCESS_MEMORY_EXCEEDED, -259, false);                 \
139
1
    E(INVALID_INPUT_SYNTAX, -260, false);                    \
140
1
    E(CE_CMD_PARAMS_ERROR, -300, true);                      \
141
1
    E(CE_BUFFER_TOO_SMALL, -301, true);                      \
142
1
    E(CE_CMD_NOT_VALID, -302, true);                         \
143
1
    E(CE_LOAD_TABLE_ERROR, -303, true);                      \
144
1
    E(CE_NOT_FINISHED, -304, true);                          \
145
1
    E(CE_TABLET_ID_EXIST, -305, true);                       \
146
1
    E(TABLE_VERSION_DUPLICATE_ERROR, -400, true);            \
147
1
    E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true);       \
148
1
    E(TABLE_INDEX_VALIDATE_ERROR, -402, true);               \
149
1
    E(TABLE_INDEX_FIND_ERROR, -403, true);                   \
150
1
    E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true);           \
151
1
    E(TABLE_CREATE_META_ERROR, -405, true);                  \
152
1
    E(TABLE_ALREADY_DELETED_ERROR, -406, false);             \
153
1
    E(ENGINE_INSERT_EXISTS_TABLE, -500, true);               \
154
1
    E(ENGINE_DROP_NOEXISTS_TABLE, -501, true);               \
155
1
    E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true);            \
156
1
    E(TABLE_INSERT_DUPLICATION_ERROR, -503, true);           \
157
1
    E(DELETE_VERSION_ERROR, -504, true);                     \
158
1
    E(GC_SCAN_PATH_ERROR, -505, true);                       \
159
1
    E(ENGINE_INSERT_OLD_TABLET, -506, true);                 \
160
1
    E(FETCH_OTHER_ERROR, -600, true);                        \
161
1
    E(FETCH_TABLE_NOT_EXIST, -601, true);                    \
162
1
    E(FETCH_VERSION_ERROR, -602, true);                      \
163
1
    E(FETCH_SCHEMA_ERROR, -603, true);                       \
164
1
    E(FETCH_COMPRESSION_ERROR, -604, true);                  \
165
1
    E(FETCH_CONTEXT_NOT_EXIST, -605, true);                  \
166
1
    E(FETCH_GET_READER_PARAMS_ERR, -606, true);              \
167
1
    E(FETCH_SAVE_SESSION_ERR, -607, true);                   \
168
1
    E(FETCH_MEMORY_EXCEEDED, -608, true);                    \
169
1
    E(READER_IS_UNINITIALIZED, -700, true);                  \
170
1
    E(READER_GET_ITERATOR_ERROR, -701, true);                \
171
1
    E(CAPTURE_ROWSET_READER_ERROR, -702, true);              \
172
1
    E(READER_READING_ERROR, -703, true);                     \
173
1
    E(READER_INITIALIZE_ERROR, -704, true);                  \
174
1
    E(BE_VERSION_NOT_MATCH, -800, true);                     \
175
1
    E(BE_REPLACE_VERSIONS_ERROR, -801, true);                \
176
1
    E(BE_MERGE_ERROR, -802, true);                           \
177
1
    E(CAPTURE_ROWSET_ERROR, -804, true);                     \
178
1
    E(BE_SAVE_HEADER_ERROR, -805, true);                     \
179
1
    E(BE_INIT_OLAP_DATA, -806, true);                        \
180
1
    E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true);              \
181
1
    E(BE_NO_SUITABLE_VERSION, -808, false);                  \
182
1
    E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true);          \
183
1
    E(BE_ERROR_DELETE_ACTION, -811, true);                   \
184
1
    E(BE_SEGMENTS_OVERLAPPING, -812, true);                  \
185
1
    E(PUSH_INIT_ERROR, -900, true);                          \
186
1
    E(PUSH_VERSION_INCORRECT, -902, true);                   \
187
1
    E(PUSH_SCHEMA_MISMATCH, -903, true);                     \
188
1
    E(PUSH_CHECKSUM_ERROR, -904, true);                      \
189
1
    E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true);            \
190
1
    E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true);              \
191
1
    E(PUSH_BUILD_DELTA_ERROR, -907, true);                   \
192
1
    E(PUSH_VERSION_ALREADY_EXIST, -908, false);              \
193
1
    E(PUSH_TABLE_NOT_EXIST, -909, true);                     \
194
1
    E(PUSH_INPUT_DATA_ERROR, -910, true);                    \
195
1
    E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false);          \
196
1
    E(PUSH_BATCH_PROCESS_REMOVED, -912, true);               \
197
1
    E(PUSH_COMMIT_ROWSET, -913, true);                       \
198
1
    E(PUSH_ROWSET_NOT_FOUND, -914, true);                    \
199
1
    E(INDEX_LOAD_ERROR, -1000, true);                        \
200
1
    E(INDEX_CHECKSUM_ERROR, -1002, true);                    \
201
1
    E(INDEX_DELTA_PRUNING, -1003, true);                     \
202
1
    E(DATA_ROW_BLOCK_ERROR, -1100, true);                    \
203
1
    E(DATA_FILE_TYPE_ERROR, -1101, true);                    \
204
1
    E(WRITER_INDEX_WRITE_ERROR, -1200, true);                \
205
1
    E(WRITER_DATA_WRITE_ERROR, -1201, true);                 \
206
1
    E(WRITER_ROW_BLOCK_ERROR, -1202, true);                  \
207
1
    E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true);            \
208
1
    E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true);               \
209
1
    E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true);             \
210
1
    E(HEADER_ADD_VERSION, -1400, true);                      \
211
1
    E(HEADER_DELETE_VERSION, -1401, true);                   \
212
1
    E(HEADER_ADD_PENDING_DELTA, -1402, true);                \
213
1
    E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true);          \
214
1
    E(HEADER_INVALID_FLAG, -1404, true);                     \
215
1
    E(HEADER_LOAD_INVALID_KEY, -1408, true);                 \
216
1
    E(HEADER_LOAD_JSON_HEADER, -1410, true);                 \
217
1
    E(HEADER_INIT_FAILED, -1411, true);                      \
218
1
    E(HEADER_PB_PARSE_FAILED, -1412, true);                  \
219
1
    E(HEADER_HAS_PENDING_DATA, -1413, true);                 \
220
1
    E(SCHEMA_SCHEMA_INVALID, -1500, true);                   \
221
1
    E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true);             \
222
1
    E(ALTER_MULTI_TABLE_ERR, -1600, true);                   \
223
1
    E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true);             \
224
1
    E(ALTER_STATUS_ERR, -1602, true);                        \
225
1
    E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true);     \
226
1
    E(SCHEMA_CHANGE_INFO_INVALID, -1604, true);              \
227
1
    E(QUERY_SPLIT_KEY_ERR, -1605, true);                     \
228
1
    E(DATA_QUALITY_ERR, -1606, false);                       \
229
1
    E(COLUMN_DATA_LOAD_BLOCK, -1700, true);                  \
230
1
    E(COLUMN_DATA_RECORD_INDEX, -1701, true);                \
231
1
    E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true);            \
232
1
    E(COLUMN_DATA_READ_VAR_INT, -1703, true);                \
233
1
    E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true);              \
234
1
    E(COLUMN_READ_STREAM, -1706, true);                      \
235
1
    E(COLUMN_STREAM_NOT_EXIST, -1716, true);                 \
236
1
    E(COLUMN_VALUE_NULL, -1717, true);                       \
237
1
    E(COLUMN_SEEK_ERROR, -1719, true);                       \
238
1
    E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true);            \
239
1
    E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true);             \
240
1
    E(DELETE_INVALID_CONDITION, -1900, true);                \
241
1
    E(DELETE_UPDATE_HEADER_FAILED, -1901, true);             \
242
1
    E(DELETE_SAVE_HEADER_FAILED, -1902, true);               \
243
1
    E(DELETE_INVALID_PARAMETERS, -1903, true);               \
244
1
    E(DELETE_INVALID_VERSION, -1904, true);                  \
245
1
    E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false);         \
246
1
    E(CUMULATIVE_REPEAT_INIT, -2001, true);                  \
247
1
    E(CUMULATIVE_INVALID_PARAMETERS, -2002, true);           \
248
1
    E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true);   \
249
1
    E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \
250
1
    E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true);          \
251
1
    E(CUMULATIVE_MISS_VERSION, -2006, true);                 \
252
1
    E(FULL_NO_SUITABLE_VERSION, -2008, false);               \
253
1
    E(FULL_MISS_VERSION, -2009, true);                       \
254
1
    E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false);         \
255
1
    E(META_INVALID_ARGUMENT, -3000, true);                   \
256
1
    E(META_OPEN_DB_ERROR, -3001, true);                      \
257
1
    E(META_KEY_NOT_FOUND, -3002, false);                     \
258
1
    E(META_GET_ERROR, -3003, true);                          \
259
1
    E(META_PUT_ERROR, -3004, true);                          \
260
1
    E(META_ITERATOR_ERROR, -3005, true);                     \
261
1
    E(META_DELETE_ERROR, -3006, true);                       \
262
1
    E(META_ALREADY_EXIST, -3007, true);                      \
263
1
    E(ROWSET_WRITER_INIT, -3100, true);                      \
264
1
    E(ROWSET_SAVE_FAILED, -3101, true);                      \
265
1
    E(ROWSET_GENERATE_ID_FAILED, -3102, true);               \
266
1
    E(ROWSET_DELETE_FILE_FAILED, -3103, true);               \
267
1
    E(ROWSET_BUILDER_INIT, -3104, true);                     \
268
1
    E(ROWSET_TYPE_NOT_FOUND, -3105, true);                   \
269
1
    E(ROWSET_ALREADY_EXIST, -3106, true);                    \
270
1
    E(ROWSET_CREATE_READER, -3107, true);                    \
271
1
    E(ROWSET_INVALID, -3108, true);                          \
272
1
    E(ROWSET_READER_INIT, -3110, true);                      \
273
1
    E(ROWSET_INVALID_STATE_TRANSITION, -3112, true);         \
274
1
    E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true);           \
275
1
    E(ROWSET_ADD_MIGRATION_V2, -3114, true);                 \
276
1
    E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false);         \
277
1
    E(ROWSET_RENAME_FILE_FAILED, -3116, false);              \
278
1
    E(SEGCOMPACTION_INIT_READER, -3117, false);              \
279
1
    E(SEGCOMPACTION_INIT_WRITER, -3118, false);              \
280
1
    E(SEGCOMPACTION_FAILED, -3119, false);                   \
281
1
    E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true);             \
282
1
    E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true);      \
283
1
    E(INDEX_INVALID_PARAMETERS, -6000, false);               \
284
1
    E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false);           \
285
1
    E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false);           \
286
1
    E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false);          \
287
1
    E(INVERTED_INDEX_BYPASS, -6004, false);                  \
288
1
    E(INVERTED_INDEX_NO_TERMS, -6005, false);                \
289
1
    E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true);       \
290
1
    E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false);        \
291
1
    E(INVERTED_INDEX_BUILD_WAITTING, -6008, false);          \
292
1
    E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false);         \
293
1
    E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false);        \
294
1
    E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false);          \
295
1
    E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false);          \
296
1
    E(KEY_NOT_FOUND, -7000, false);                          \
297
1
    E(KEY_ALREADY_EXISTS, -7001, false);                     \
298
1
    E(ENTRY_NOT_FOUND, -7002, false);                        \
299
1
    E(NEW_ROWS_IN_PARTIAL_UPDATE, -7003, false);             \
300
1
    E(INVALID_TABLET_STATE, -7211, false);                   \
301
1
    E(ROWSETS_EXPIRED, -7311, false);                        \
302
1
    E(CGROUP_ERROR, -7411, false);                           \
303
1
    E(FATAL_ERROR, -7412, false);
304
305
// Define constexpr int error_code_name = error_code_value
306
#define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE;
307
APPLY_FOR_OLAP_ERROR_CODES(M)
308
#undef M
309
310
#define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name;
311
APPLY_FOR_THRIFT_ERROR_CODES(MM)
312
#undef MM
313
314
constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536;
315
struct ErrorCodeState {
316
    int16_t error_code = 0;
317
    bool stacktrace = true;
318
    std::string description;
319
    size_t count = 0; // Used for count the number of error happens
320
    std::mutex mutex; // lock guard for count state
321
};
322
extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM];
323
324
class ErrorCodeInitializer {
325
public:
326
1
    ErrorCodeInitializer(int temp) : signal_value(temp) {
327
65.5k
        for (auto& error_state : error_states) {
328
65.5k
            error_state.error_code = 0;
329
65.5k
        }
330
1
#define M(NAME, ENABLESTACKTRACE)                                  \
331
44
    error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \
332
44
    error_states[TStatusCode::NAME].description = #NAME;           \
333
44
    error_states[TStatusCode::NAME].error_code = TStatusCode::NAME;
334
44
        APPLY_FOR_THRIFT_ERROR_CODES(M)
335
1
#undef M
336
// In status.h, if error code > 0, then it means it will be used in TStatusCode and will
337
// also be used in FE.
338
// Other error codes that with error code < 0, will only be used in BE.
339
// We use abs(error code) as the index in error_states, so that these two kinds of error
340
// codes MUST not have overlap.
341
// Add an assert here to make sure the code in TStatusCode and other error code are not
342
// overlapped.
343
1
#define M(NAME, ERRORCODE, ENABLESTACKTRACE)                    \
344
218
    assert(error_states[abs(ERRORCODE)].error_code == 0);       \
345
218
    error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \
346
218
    error_states[abs(ERRORCODE)].error_code = ERRORCODE;
347
218
        APPLY_FOR_OLAP_ERROR_CODES(M)
348
218
#undef M
349
218
    }
350
351
1
    void check_init() const {
352
        //the signal value is 0, it means the global error states not inited, it's logical error
353
        // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time.
354
1
        if (signal_value == 0) {
355
0
            exit(-1);
356
0
        }
357
1
    }
358
359
private:
360
    int signal_value = 0;
361
};
362
363
extern ErrorCodeInitializer error_code_init;
364
} // namespace ErrorCode
365
366
class [[nodiscard]] Status {
367
public:
368
136M
    Status() : _code(ErrorCode::OK), _err_msg(nullptr) {}
369
370
    // used to convert Exception to Status
371
2.40k
    Status(int code, std::string msg, std::string stack = "") : _code(code) {
372
2.40k
        _err_msg = std::make_unique<ErrMsg>();
373
2.40k
        _err_msg->_msg = std::move(msg);
374
2.40k
        if (config::enable_stacktrace) {
375
0
            _err_msg->_stack = std::move(stack);
376
0
        }
377
2.40k
    }
378
379
    // copy c'tor makes copy of error detail so Status can be returned by value
380
615k
    Status(const Status& rhs) { *this = rhs; }
381
382
    // move c'tor
383
1.79M
    Status(Status&& rhs) noexcept = default;
384
385
    // same as copy c'tor
386
618k
    Status& operator=(const Status& rhs) {
387
618k
        _code = rhs._code;
388
618k
        if (rhs._err_msg) {
389
5.55k
            _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg);
390
613k
        } else {
391
            // If rhs error msg is empty, then should also clear current error msg
392
            // For example, if rhs is OK and current status is error, then copy to current
393
            // status, should clear current error message.
394
613k
            _err_msg.reset();
395
613k
        }
396
618k
        return *this;
397
618k
    }
398
399
    // move assign
400
5.32M
    Status& operator=(Status&& rhs) noexcept {
401
5.32M
        _code = rhs._code;
402
5.32M
        if (rhs._err_msg) {
403
22.4k
            _err_msg = std::move(rhs._err_msg);
404
5.29M
        } else {
405
5.29M
            _err_msg.reset();
406
5.29M
        }
407
5.32M
        return *this;
408
5.32M
    }
409
410
    template <bool stacktrace = true>
411
4
    Status static create(const TStatus& status) {
412
4
        return Error<stacktrace>(
413
4
                status.status_code,
414
4
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
415
4
    }
_ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE
Line
Count
Source
411
4
    Status static create(const TStatus& status) {
412
4
        return Error<stacktrace>(
413
4
                status.status_code,
414
4
                "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0]));
415
4
    }
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE
416
417
    template <bool stacktrace = true>
418
54
    Status static create(const PStatus& pstatus) {
419
54
        return Error<stacktrace>(
420
54
                pstatus.status_code(),
421
54
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
422
54
    }
_ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE
Line
Count
Source
418
54
    Status static create(const PStatus& pstatus) {
419
54
        return Error<stacktrace>(
420
54
                pstatus.status_code(),
421
54
                "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0)));
422
54
    }
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE
423
424
    template <int code, bool stacktrace = true, typename... Args>
425
165k
    Status static Error(std::string_view msg, Args&&... args) {
426
165k
        Status status;
427
165k
        status._code = code;
428
165k
        status._err_msg = std::make_unique<ErrMsg>();
429
165k
        if constexpr (sizeof...(args) == 0) {
430
18.8k
            status._err_msg->_msg = msg;
431
146k
        } else {
432
146k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
146k
        }
434
165k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
165k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
165k
        return status;
441
165k
    }
_ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
3.75k
    Status static Error(std::string_view msg, Args&&... args) {
426
3.75k
        Status status;
427
3.75k
        status._code = code;
428
3.75k
        status._err_msg = std::make_unique<ErrMsg>();
429
3.75k
        if constexpr (sizeof...(args) == 0) {
430
3.75k
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
3.75k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3.75k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3.75k
        return status;
441
3.75k
    }
_ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin259ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
72
    Status static Error(std::string_view msg, Args&&... args) {
426
72
        Status status;
427
72
        status._code = code;
428
72
        status._err_msg = std::make_unique<ErrMsg>();
429
72
        if constexpr (sizeof...(args) == 0) {
430
72
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
72
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
72
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
72
        return status;
441
72
    }
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
911
    Status static Error(std::string_view msg, Args&&... args) {
426
911
        Status status;
427
911
        status._code = code;
428
911
        status._err_msg = std::make_unique<ErrMsg>();
429
911
        if constexpr (sizeof...(args) == 0) {
430
911
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
911
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
911
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
911
        return status;
441
911
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
15
    Status static Error(std::string_view msg, Args&&... args) {
426
15
        Status status;
427
15
        status._code = code;
428
15
        status._err_msg = std::make_unique<ErrMsg>();
429
15
        if constexpr (sizeof...(args) == 0) {
430
15
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
15
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
15
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
15
        return status;
441
15
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
36
    Status static Error(std::string_view msg, Args&&... args) {
426
36
        Status status;
427
36
        status._code = code;
428
36
        status._err_msg = std::make_unique<ErrMsg>();
429
36
        if constexpr (sizeof...(args) == 0) {
430
36
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
36
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
36
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
36
        return status;
441
36
    }
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
2
        if constexpr (sizeof...(args) == 0) {
430
2
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
7
    Status static Error(std::string_view msg, Args&&... args) {
426
7
        Status status;
427
7
        status._code = code;
428
7
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
7
        } else {
432
7
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
7
        }
434
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
7
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
7
        return status;
441
7
    }
_ZN5doris6Status5ErrorILi33ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
111
    Status static Error(std::string_view msg, Args&&... args) {
426
111
        Status status;
427
111
        status._code = code;
428
111
        status._err_msg = std::make_unique<ErrMsg>();
429
111
        if constexpr (sizeof...(args) == 0) {
430
111
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
111
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
111
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
111
        return status;
441
111
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
11
    Status static Error(std::string_view msg, Args&&... args) {
426
11
        Status status;
427
11
        status._code = code;
428
11
        status._err_msg = std::make_unique<ErrMsg>();
429
11
        if constexpr (sizeof...(args) == 0) {
430
11
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
11
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
11
        return status;
441
11
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
9
    Status static Error(std::string_view msg, Args&&... args) {
426
9
        Status status;
427
9
        status._code = code;
428
9
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
9
        } else {
432
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
9
        }
434
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
9
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
9
        return status;
441
9
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
6
    Status static Error(std::string_view msg, Args&&... args) {
426
6
        Status status;
427
6
        status._code = code;
428
6
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
6
        } else {
432
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
6
        }
434
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6
        return status;
441
6
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
13
    Status static Error(std::string_view msg, Args&&... args) {
426
13
        Status status;
427
13
        status._code = code;
428
13
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
13
        } else {
432
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
13
        }
434
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
13
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
13
        return status;
441
13
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
13
    Status static Error(std::string_view msg, Args&&... args) {
426
13
        Status status;
427
13
        status._code = code;
428
13
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
13
        } else {
432
13
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
13
        }
434
13
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
13
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
13
        return status;
441
13
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
19
    Status static Error(std::string_view msg, Args&&... args) {
426
19
        Status status;
427
19
        status._code = code;
428
19
        status._err_msg = std::make_unique<ErrMsg>();
429
19
        if constexpr (sizeof...(args) == 0) {
430
19
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
19
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
19
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
19
        return status;
441
19
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
3
        if constexpr (sizeof...(args) == 0) {
430
3
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJiRA15_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
2
        if constexpr (sizeof...(args) == 0) {
430
2
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
38
    Status static Error(std::string_view msg, Args&&... args) {
426
38
        Status status;
427
38
        status._code = code;
428
38
        status._err_msg = std::make_unique<ErrMsg>();
429
38
        if constexpr (sizeof...(args) == 0) {
430
38
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
38
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
38
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
38
        return status;
441
38
    }
_ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
255
    Status static Error(std::string_view msg, Args&&... args) {
426
255
        Status status;
427
255
        status._code = code;
428
255
        status._err_msg = std::make_unique<ErrMsg>();
429
255
        if constexpr (sizeof...(args) == 0) {
430
255
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
255
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
255
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
255
        return status;
441
255
    }
_ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
10
    Status static Error(std::string_view msg, Args&&... args) {
426
10
        Status status;
427
10
        status._code = code;
428
10
        status._err_msg = std::make_unique<ErrMsg>();
429
10
        if constexpr (sizeof...(args) == 0) {
430
10
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
10
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
10
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
10
        return status;
441
10
    }
_ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
14
    Status static Error(std::string_view msg, Args&&... args) {
426
14
        Status status;
427
14
        status._code = code;
428
14
        status._err_msg = std::make_unique<ErrMsg>();
429
14
        if constexpr (sizeof...(args) == 0) {
430
14
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
14
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
14
        return status;
441
14
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
48.0k
    Status static Error(std::string_view msg, Args&&... args) {
426
48.0k
        Status status;
427
48.0k
        status._code = code;
428
48.0k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
48.0k
        } else {
432
48.0k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
48.0k
        }
434
48.0k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
48.0k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
48.0k
        return status;
441
48.0k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
6.24k
    Status static Error(std::string_view msg, Args&&... args) {
426
6.24k
        Status status;
427
6.24k
        status._code = code;
428
6.24k
        status._err_msg = std::make_unique<ErrMsg>();
429
6.24k
        if constexpr (sizeof...(args) == 0) {
430
6.24k
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
6.24k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6.24k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6.24k
        return status;
441
6.24k
    }
_ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
7
    Status static Error(std::string_view msg, Args&&... args) {
426
7
        Status status;
427
7
        status._code = code;
428
7
        status._err_msg = std::make_unique<ErrMsg>();
429
7
        if constexpr (sizeof...(args) == 0) {
430
7
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
7
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
7
        return status;
441
7
    }
_ZN5doris6Status5ErrorILi6ELb1EJmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_jS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
18
    Status static Error(std::string_view msg, Args&&... args) {
426
18
        Status status;
427
18
        status._code = code;
428
18
        status._err_msg = std::make_unique<ErrMsg>();
429
18
        if constexpr (sizeof...(args) == 0) {
430
18
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
18
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
18
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
18
        return status;
441
18
    }
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
16.1k
    Status static Error(std::string_view msg, Args&&... args) {
426
16.1k
        Status status;
427
16.1k
        status._code = code;
428
16.1k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
16.1k
        } else {
432
16.1k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
16.1k
        }
434
16.1k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
16.1k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
16.1k
        return status;
441
16.1k
    }
_ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
268
    Status static Error(std::string_view msg, Args&&... args) {
426
268
        Status status;
427
268
        status._code = code;
428
268
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
268
        } else {
432
268
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
268
        }
434
268
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
268
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
268
        return status;
441
268
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
6
    Status static Error(std::string_view msg, Args&&... args) {
426
6
        Status status;
427
6
        status._code = code;
428
6
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
6
        } else {
432
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
6
        }
434
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6
        return status;
441
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi47ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
12
    Status static Error(std::string_view msg, Args&&... args) {
426
12
        Status status;
427
12
        status._code = code;
428
12
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
12
        } else {
432
12
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
12
        }
434
12
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
12
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
12
        return status;
441
12
    }
_ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
_ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
20
    Status static Error(std::string_view msg, Args&&... args) {
426
20
        Status status;
427
20
        status._code = code;
428
20
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
20
        } else {
432
20
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
20
        }
434
20
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
20
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
20
        return status;
441
20
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_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
425
4.04k
    Status static Error(std::string_view msg, Args&&... args) {
426
4.04k
        Status status;
427
4.04k
        status._code = code;
428
4.04k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4.04k
        } else {
432
4.04k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4.04k
        }
434
4.04k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4.04k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4.04k
        return status;
441
4.04k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
58.5k
    Status static Error(std::string_view msg, Args&&... args) {
426
58.5k
        Status status;
427
58.5k
        status._code = code;
428
58.5k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
58.5k
        } else {
432
58.5k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
58.5k
        }
434
58.5k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
58.5k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
58.5k
        return status;
441
58.5k
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4.42k
    Status static Error(std::string_view msg, Args&&... args) {
426
4.42k
        Status status;
427
4.42k
        status._code = code;
428
4.42k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4.42k
        } else {
432
4.42k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4.42k
        }
434
4.42k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4.42k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4.42k
        return status;
441
4.42k
    }
_ZN5doris6Status5ErrorILi33ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
15
    Status static Error(std::string_view msg, Args&&... args) {
426
15
        Status status;
427
15
        status._code = code;
428
15
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
15
        } else {
432
15
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
15
        }
434
15
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
15
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
15
        return status;
441
15
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
5
    Status static Error(std::string_view msg, Args&&... args) {
426
5
        Status status;
427
5
        status._code = code;
428
5
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
5
        } else {
432
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
5
        }
434
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
5
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
5
        return status;
441
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7411ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
7
    Status static Error(std::string_view msg, Args&&... args) {
426
7
        Status status;
427
7
        status._code = code;
428
7
        status._err_msg = std::make_unique<ErrMsg>();
429
7
        if constexpr (sizeof...(args) == 0) {
430
7
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
7
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
7
        return status;
441
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA7_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA12_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
6
    Status static Error(std::string_view msg, Args&&... args) {
426
6
        Status status;
427
6
        status._code = code;
428
6
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
6
        } else {
432
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
6
        }
434
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6
        return status;
441
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
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: _ZN5doris6Status5ErrorILi6ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
6.97k
    Status static Error(std::string_view msg, Args&&... args) {
426
6.97k
        Status status;
427
6.97k
        status._code = code;
428
6.97k
        status._err_msg = std::make_unique<ErrMsg>();
429
6.97k
        if constexpr (sizeof...(args) == 0) {
430
6.97k
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
6.97k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6.97k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6.97k
        return status;
441
6.97k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
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: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
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: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
5
    Status static Error(std::string_view msg, Args&&... args) {
426
5
        Status status;
427
5
        status._code = code;
428
5
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
5
        } else {
432
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
5
        }
434
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
5
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
5
        return status;
441
5
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3000ELb1EJRNS_11TabletStateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
4
        if constexpr (sizeof...(args) == 0) {
430
4
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJlRlS2_S2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
29
    Status static Error(std::string_view msg, Args&&... args) {
426
29
        Status status;
427
29
        status._code = code;
428
29
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
29
        } else {
432
29
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
29
        }
434
29
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
29
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
29
        return status;
441
29
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7003ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3103ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3105ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin3002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin608ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3118ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3117ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
8
    Status static Error(std::string_view msg, Args&&... args) {
426
8
        Status status;
427
8
        status._code = code;
428
8
        status._err_msg = std::make_unique<ErrMsg>();
429
8
        if constexpr (sizeof...(args) == 0) {
430
8
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
8
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
8
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
8
        return status;
441
8
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi31ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_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
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
14
    Status static Error(std::string_view msg, Args&&... args) {
426
14
        Status status;
427
14
        status._code = code;
428
14
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
14
        } else {
432
14
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
14
        }
434
14
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
14
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
14
        return status;
441
14
    }
_ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
_ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
7
    Status static Error(std::string_view msg, Args&&... args) {
426
7
        Status status;
427
7
        status._code = code;
428
7
        status._err_msg = std::make_unique<ErrMsg>();
429
7
        if constexpr (sizeof...(args) == 0) {
430
7
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
7
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
7
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
7
        return status;
441
7
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin6004ELb1EJRmRiRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6005ELb1EJEEES0_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
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7000ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmjmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmjmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
_ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRmRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJmRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1500ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3104ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin243ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin234ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin223ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin222ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJRKlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRlEEES0_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: _ZN5doris6Status5ErrorILin500ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin506ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin405ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS0_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRilRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin402ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin502ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNS_14TStorageFormat4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
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
425
11
    Status static Error(std::string_view msg, Args&&... args) {
426
11
        Status status;
427
11
        status._code = code;
428
11
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
11
        } else {
432
11
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
11
        }
434
11
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
11
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
11
        return status;
441
11
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJmRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin233ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILin911ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
1
        if constexpr (sizeof...(args) == 0) {
430
1
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi6ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi42ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
17
    Status static Error(std::string_view msg, Args&&... args) {
426
17
        Status status;
427
17
        status._code = code;
428
17
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
17
        } else {
432
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
17
        }
434
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
17
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
17
        return status;
441
17
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
265
    Status static Error(std::string_view msg, Args&&... args) {
426
265
        Status status;
427
265
        status._code = code;
428
265
        status._err_msg = std::make_unique<ErrMsg>();
429
265
        if constexpr (sizeof...(args) == 0) {
430
265
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
265
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
265
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
265
        return status;
441
265
    }
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
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
17
    Status static Error(std::string_view msg, Args&&... args) {
426
17
        Status status;
427
17
        status._code = code;
428
17
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
17
        } else {
432
17
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
17
        }
434
17
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
17
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
17
        return status;
441
17
    }
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
3
    Status static Error(std::string_view msg, Args&&... args) {
426
3
        Status status;
427
3
        status._code = code;
428
3
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
3
        } else {
432
3
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
3
        }
434
3
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
3
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
3
        return status;
441
3
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
5
    Status static Error(std::string_view msg, Args&&... args) {
426
5
        Status status;
427
5
        status._code = code;
428
5
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
5
        } else {
432
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
5
        }
434
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
5
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
5
        return status;
441
5
    }
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi9ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjSA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
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: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
439
    Status static Error(std::string_view msg, Args&&... args) {
426
439
        Status status;
427
439
        status._code = code;
428
439
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
439
        } else {
432
439
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
439
        }
434
439
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
439
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
439
        return status;
441
439
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
2.43k
    Status static Error(std::string_view msg, Args&&... args) {
426
2.43k
        Status status;
427
2.43k
        status._code = code;
428
2.43k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2.43k
        } else {
432
2.43k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2.43k
        }
434
2.43k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2.43k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2.43k
        return status;
441
2.43k
    }
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _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
425
27
    Status static Error(std::string_view msg, Args&&... args) {
426
27
        Status status;
427
27
        status._code = code;
428
27
        status._err_msg = std::make_unique<ErrMsg>();
429
27
        if constexpr (sizeof...(args) == 0) {
430
27
            status._err_msg->_msg = msg;
431
        } else {
432
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
        }
434
27
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
27
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
27
        return status;
441
27
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
5
    Status static Error(std::string_view msg, Args&&... args) {
426
5
        Status status;
427
5
        status._code = code;
428
5
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
5
        } else {
432
5
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
5
        }
434
5
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
5
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
5
        return status;
441
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
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
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
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEES6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
11.5k
    Status static Error(std::string_view msg, Args&&... args) {
426
11.5k
        Status status;
427
11.5k
        status._code = code;
428
11.5k
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
11.5k
        } else {
432
11.5k
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
11.5k
        }
434
11.5k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
11.5k
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
11.5k
        return status;
441
11.5k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
120
    Status static Error(std::string_view msg, Args&&... args) {
426
120
        Status status;
427
120
        status._code = code;
428
120
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
120
        } else {
432
120
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
120
        }
434
120
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
120
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
120
        return status;
441
120
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_10vectorized20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi3ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbiRKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiRKS7_bEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Line
Count
Source
425
9
    Status static Error(std::string_view msg, Args&&... args) {
426
9
        Status status;
427
9
        status._code = code;
428
9
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
9
        } else {
432
9
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
9
        }
434
9
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
9
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
9
        return status;
441
9
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_
Line
Count
Source
425
2
    Status static Error(std::string_view msg, Args&&... args) {
426
2
        Status status;
427
2
        status._code = code;
428
2
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
2
        } else {
432
2
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
2
        }
434
2
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
2
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
2
        return status;
441
2
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
_ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Line
Count
Source
425
6
    Status static Error(std::string_view msg, Args&&... args) {
426
6
        Status status;
427
6
        status._code = code;
428
6
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
6
        } else {
432
6
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
6
        }
434
6
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
6
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
6
        return status;
441
6
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi47ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi33ELb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Line
Count
Source
425
4
    Status static Error(std::string_view msg, Args&&... args) {
426
4
        Status status;
427
4
        status._code = code;
428
4
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
4
        } else {
432
4
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
4
        }
434
4
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
4
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
4
        return status;
441
4
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _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
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
_ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_
Line
Count
Source
425
1
    Status static Error(std::string_view msg, Args&&... args) {
426
1
        Status status;
427
1
        status._code = code;
428
1
        status._err_msg = std::make_unique<ErrMsg>();
429
        if constexpr (sizeof...(args) == 0) {
430
            status._err_msg->_msg = msg;
431
1
        } else {
432
1
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
433
1
        }
434
1
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
435
1
            config::enable_stacktrace) {
436
            // Delete the first one frame pointers, which are inside the status.h
437
0
            status._err_msg->_stack = get_stack_trace(1);
438
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
439
0
        }
440
1
        return status;
441
1
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7311ELb0EJRKNSt7__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: _ZN5doris6Status5ErrorILi100ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRA10_KcPS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_
442
443
    template <bool stacktrace = true, typename... Args>
444
11.8k
    Status static Error(int code, std::string_view msg, Args&&... args) {
445
11.8k
        Status status;
446
11.8k
        status._code = code;
447
11.8k
        status._err_msg = std::make_unique<ErrMsg>();
448
11.8k
        if constexpr (sizeof...(args) == 0) {
449
11.8k
            status._err_msg->_msg = msg;
450
11.8k
        } else {
451
0
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
452
0
        }
453
11.8k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
454
11.8k
            config::enable_stacktrace) {
455
0
            status._err_msg->_stack = get_stack_trace(1);
456
0
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
457
0
        }
458
11.8k
        return status;
459
11.8k
    }
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
444
4.31k
    Status static Error(int code, std::string_view msg, Args&&... args) {
445
4.31k
        Status status;
446
4.31k
        status._code = code;
447
4.31k
        status._err_msg = std::make_unique<ErrMsg>();
448
4.31k
        if constexpr (sizeof...(args) == 0) {
449
4.31k
            status._err_msg->_msg = msg;
450
        } else {
451
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
452
        }
453
4.31k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
454
4.31k
            config::enable_stacktrace) {
455
0
            status._err_msg->_stack = get_stack_trace(1);
456
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
457
0
        }
458
4.31k
        return status;
459
4.31k
    }
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
444
7.51k
    Status static Error(int code, std::string_view msg, Args&&... args) {
445
7.51k
        Status status;
446
7.51k
        status._code = code;
447
7.51k
        status._err_msg = std::make_unique<ErrMsg>();
448
7.51k
        if constexpr (sizeof...(args) == 0) {
449
7.51k
            status._err_msg->_msg = msg;
450
        } else {
451
            status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...);
452
        }
453
7.51k
        if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace &&
454
7.51k
            config::enable_stacktrace) {
455
0
            status._err_msg->_stack = get_stack_trace(1);
456
            LOG(WARNING) << "meet error status: " << status; // may print too many stacks.
457
0
        }
458
7.51k
        return status;
459
7.51k
    }
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_
460
461
133M
    static Status OK() { return {}; }
462
463
    template <bool stacktrace = true, typename... Args>
464
0
    static Status FatalError(std::string_view msg, Args&&... args) {
465
0
#ifndef NDEBUG
466
0
        LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...);
467
0
#endif
468
0
        return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...);
469
0
    }
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_10vectorized20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
470
471
// default have stacktrace. could disable manually.
472
#define ERROR_CTOR(name, code)                                                       \
473
    template <bool stacktrace = true, typename... Args>                              \
474
64.8k
    static Status name(std::string_view msg, Args&&... args) {                       \
475
64.8k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
64.8k
    }
_ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
71
    static Status name(std::string_view msg, Args&&... args) {                       \
475
71
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
71
    }
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
15
    static Status name(std::string_view msg, Args&&... args) {                       \
475
15
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
15
    }
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
3
    static Status name(std::string_view msg, Args&&... args) {                       \
475
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
3
    }
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
3
    static Status name(std::string_view msg, Args&&... args) {                       \
475
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
3
    }
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
100
    static Status name(std::string_view msg, Args&&... args) {                       \
475
100
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
100
    }
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
9
    static Status name(std::string_view msg, Args&&... args) {                       \
475
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
9
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
3
    static Status name(std::string_view msg, Args&&... args) {                       \
475
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
6
    static Status name(std::string_view msg, Args&&... args) {                       \
475
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
6
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
13
    static Status name(std::string_view msg, Args&&... args) {                       \
475
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
13
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
13
    static Status name(std::string_view msg, Args&&... args) {                       \
475
13
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
13
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
19
    static Status name(std::string_view msg, Args&&... args) {                       \
475
19
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
19
    }
_ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
_ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJiRA15_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
_ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
7
    static Status name(std::string_view msg, Args&&... args) {                       \
475
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
7
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
48.0k
    static Status name(std::string_view msg, Args&&... args) {                       \
475
48.0k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
48.0k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
7
    static Status name(std::string_view msg, Args&&... args) {                       \
475
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
7
    }
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
16.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
475
16.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
16.1k
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
12
    static Status name(std::string_view msg, Args&&... args) {                       \
475
12
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
12
    }
_ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJPKcEEES0_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
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
5
    static Status name(std::string_view msg, Args&&... args) {                       \
475
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
5
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
6
    static Status name(std::string_view msg, Args&&... args) {                       \
475
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
6
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
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: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
474
3
    static Status name(std::string_view msg, Args&&... args) {                       \
475
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
3
    }
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
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: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_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_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_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: _ZN5doris6Status13InternalErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_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
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
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: _ZN5doris6Status13InternalErrorILb1EJRmjmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
_ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
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: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJjRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
3
    static Status name(std::string_view msg, Args&&... args) {                       \
475
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
3
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
17
    static Status name(std::string_view msg, Args&&... args) {                       \
475
17
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
17
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
265
    static Status name(std::string_view msg, Args&&... args) {                       \
475
265
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
265
    }
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
474
2
    static Status name(std::string_view msg, Args&&... args) {                       \
475
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
2
    }
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
5
    static Status name(std::string_view msg, Args&&... args) {                       \
475
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
5
    }
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RjEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS7_RjSA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_PKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
27
    static Status name(std::string_view msg, Args&&... args) {                       \
475
27
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
27
    }
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_St17basic_string_viewIcS5_EEEES0_SB_DpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status12NotSupportedILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8JniErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
4
    static Status name(std::string_view msg, Args&&... args) {                       \
475
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
4
    }
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
474
4
    static Status name(std::string_view msg, Args&&... args) {                       \
475
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
4
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _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
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Line
Count
Source
474
1
    static Status name(std::string_view msg, Args&&... args) {                       \
475
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
476
1
    }
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
477
478
// default have no stacktrace. could enable manually.
479
#define ERROR_CTOR_NOSTACK(name, code)                                               \
480
    template <bool stacktrace = false, typename... Args>                             \
481
82.1k
    static Status name(std::string_view msg, Args&&... args) {                       \
482
82.1k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
82.1k
    }
_ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
911
    static Status name(std::string_view msg, Args&&... args) {                       \
482
911
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
911
    }
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
7
    static Status name(std::string_view msg, Args&&... args) {                       \
482
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
7
    }
_ZN5doris6Status15InvalidArgumentILb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status12NetworkErrorILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
6.24k
    static Status name(std::string_view msg, Args&&... args) {                       \
482
6.24k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
6.24k
    }
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
18
    static Status name(std::string_view msg, Args&&... args) {                       \
482
18
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
18
    }
_ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
_ZN5doris6Status15InvalidArgumentILb0EJmhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
268
    static Status name(std::string_view msg, Args&&... args) {                       \
482
268
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
268
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
6
    static Status name(std::string_view msg, Args&&... args) {                       \
482
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
6
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
4
    static Status name(std::string_view msg, Args&&... args) {                       \
482
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
4
    }
_ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
20
    static Status name(std::string_view msg, Args&&... args) {                       \
482
20
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
20
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
58.5k
    static Status name(std::string_view msg, Args&&... args) {                       \
482
58.5k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
58.5k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
4.42k
    static Status name(std::string_view msg, Args&&... args) {                       \
482
4.42k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
4.42k
    }
_ZN5doris6Status15InvalidArgumentILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
15
    static Status name(std::string_view msg, Args&&... args) {                       \
482
15
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
15
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
7
    static Status name(std::string_view msg, Args&&... args) {                       \
482
7
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
7
    }
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_26TPartialUpdateNewRowPolicy4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
5
    static Status name(std::string_view msg, Args&&... args) {                       \
482
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
5
    }
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
4
    static Status name(std::string_view msg, Args&&... args) {                       \
482
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
4
    }
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
3
    static Status name(std::string_view msg, Args&&... args) {                       \
482
3
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
3
    }
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_
_ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
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: _ZN5doris6Status15InvalidArgumentILb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
5
    static Status name(std::string_view msg, Args&&... args) {                       \
482
5
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
5
    }
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
4
    static Status name(std::string_view msg, Args&&... args) {                       \
482
4
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
4
    }
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
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
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: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow8TimeUnit4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKnEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKN4wide7integerILm256EiEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
11.5k
    static Status name(std::string_view msg, Args&&... args) {                       \
482
11.5k
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
11.5k
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
120
    static Status name(std::string_view msg, Args&&... args) {                       \
482
120
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
120
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_
Line
Count
Source
481
9
    static Status name(std::string_view msg, Args&&... args) {                       \
482
9
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
9
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_
Line
Count
Source
481
2
    static Status name(std::string_view msg, Args&&... args) {                       \
482
2
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
2
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Line
Count
Source
481
6
    static Status name(std::string_view msg, Args&&... args) {                       \
482
6
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
6
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status15InvalidArgumentILb0EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRdS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
_ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_
Line
Count
Source
481
1
    static Status name(std::string_view msg, Args&&... args) {                       \
482
1
        return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \
483
1
    }
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
Unexecuted instantiation: _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_
484
485
    ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT)
486
    ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED)
487
    ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED)
488
    ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT)
489
    ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH)
490
    ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE)
491
    ERROR_CTOR(Corruption, CORRUPTION)
492
    ERROR_CTOR(IOError, IO_ERROR)
493
    ERROR_CTOR(NotFound, NOT_FOUND)
494
    ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST)
495
    ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY)
496
    ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR)
497
    ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE)
498
    ERROR_CTOR(InternalError, INTERNAL_ERROR)
499
    ERROR_CTOR(RuntimeError, RUNTIME_ERROR)
500
    ERROR_CTOR(JniError, JNI_ERROR)
501
    ERROR_CTOR_NOSTACK(Cancelled, CANCELLED)
502
    ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED)
503
    ERROR_CTOR(RpcError, THRIFT_RPC_ERROR)
504
    ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT)
505
    ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS)
506
    ERROR_CTOR(Uninitialized, UNINITIALIZED)
507
    ERROR_CTOR(Aborted, ABORTED)
508
    ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR)
509
    ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED)
510
    ERROR_CTOR(HttpError, HTTP_ERROR)
511
    ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN)
512
    ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR)
513
    ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED)
514
    ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR)
515
#undef ERROR_CTOR
516
517
    template <int code>
518
866k
    bool is() const {
519
866k
        return code == _code;
520
866k
    }
_ZNK5doris6Status2isILi30EEEbv
Line
Count
Source
518
801k
    bool is() const {
519
801k
        return code == _code;
520
801k
    }
_ZNK5doris6Status2isILi6EEEbv
Line
Count
Source
518
8
    bool is() const {
519
8
        return code == _code;
520
8
    }
_ZNK5doris6Status2isILin7002EEEbv
Line
Count
Source
518
6.02k
    bool is() const {
519
6.02k
        return code == _code;
520
6.02k
    }
_ZNK5doris6Status2isILin206EEEbv
Line
Count
Source
518
1
    bool is() const {
519
1
        return code == _code;
520
1
    }
_ZNK5doris6Status2isILi31EEEbv
Line
Count
Source
518
25.3k
    bool is() const {
519
25.3k
        return code == _code;
520
25.3k
    }
_ZNK5doris6Status2isILin228EEEbv
Line
Count
Source
518
1
    bool is() const {
519
1
        return code == _code;
520
1
    }
_ZNK5doris6Status2isILi39EEEbv
Line
Count
Source
518
1
    bool is() const {
519
1
        return code == _code;
520
1
    }
_ZNK5doris6Status2isILi33EEEbv
Line
Count
Source
518
2
    bool is() const {
519
2
        return code == _code;
520
2
    }
_ZNK5doris6Status2isILin240EEEbv
Line
Count
Source
518
2.44k
    bool is() const {
519
2.44k
        return code == _code;
520
2.44k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin3115EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi35EEEbv
_ZNK5doris6Status2isILin7000EEEbv
Line
Count
Source
518
5
    bool is() const {
519
5
        return code == _code;
520
5
    }
_ZNK5doris6Status2isILin7001EEEbv
Line
Count
Source
518
4
    bool is() const {
519
4
        return code == _code;
520
4
    }
_ZNK5doris6Status2isILi5EEEbv
Line
Count
Source
518
131
    bool is() const {
519
131
        return code == _code;
520
131
    }
_ZNK5doris6Status2isILi34EEEbv
Line
Count
Source
518
1
    bool is() const {
519
1
        return code == _code;
520
1
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin406EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin908EEEbv
_ZNK5doris6Status2isILin3002EEEbv
Line
Count
Source
518
519
    bool is() const {
519
519
        return code == _code;
520
519
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin2000EEEbv
_ZNK5doris6Status2isILi32EEEbv
Line
Count
Source
518
25.8k
    bool is() const {
519
25.8k
        return code == _code;
520
25.8k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILin6004EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin2010EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin808EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv
_ZNK5doris6Status2isILin6003EEEbv
Line
Count
Source
518
17
    bool is() const {
519
17
        return code == _code;
520
17
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi14EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi46EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv
_ZNK5doris6Status2isILi11EEEbv
Line
Count
Source
518
1
    bool is() const {
519
1
        return code == _code;
520
1
    }
_ZNK5doris6Status2isILin257EEEbv
Line
Count
Source
518
104
    bool is() const {
519
104
        return code == _code;
520
104
    }
_ZNK5doris6Status2isILin258EEEbv
Line
Count
Source
518
22
    bool is() const {
519
22
        return code == _code;
520
22
    }
_ZNK5doris6Status2isILi42EEEbv
Line
Count
Source
518
265
    bool is() const {
519
265
        return code == _code;
520
265
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv
_ZNK5doris6Status2isILin259EEEbv
Line
Count
Source
518
3.75k
    bool is() const {
519
3.75k
        return code == _code;
520
3.75k
    }
Unexecuted instantiation: _ZNK5doris6Status2isILi73EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi8EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi37EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILi9EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin7311EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv
Unexecuted instantiation: _ZNK5doris6Status2isILin215EEEbv
_ZNK5doris6Status2isILin6000EEEbv
Line
Count
Source
518
4
    bool is() const {
519
4
        return code == _code;
520
4
    }
521
522
0
    void set_code(int code) { _code = code; }
523
524
132M
    bool ok() const { return _code == ErrorCode::OK; }
525
526
    // Convert into TStatus.
527
    void to_thrift(TStatus* status) const;
528
    TStatus to_thrift() const;
529
    void to_protobuf(PStatus* status) const;
530
531
    std::string to_string() const;
532
    std::string to_string_no_stack() const;
533
534
    /// @return A json representation of this status.
535
    std::string to_json() const;
536
537
16.6k
    int code() const { return _code; }
538
539
    /// Clone this status and add the specified prefix to the message.
540
    ///
541
    /// If this status is OK, then an OK status will be returned.
542
    ///
543
    /// @param [in] msg
544
    ///   The message to prepend.
545
    /// @return A ref to Status object
546
    Status& prepend(std::string_view msg);
547
548
    /// Add the specified suffix to the message.
549
    ///
550
    /// If this status is OK, then an OK status will be returned.
551
    ///
552
    /// @param [in] msg
553
    ///   The message to append.
554
    /// @return A ref to Status object
555
    Status& append(std::string_view msg);
556
557
    // if(!status) or if (status) will use this operator
558
70.1M
    operator bool() const { return this->ok(); }
559
560
    // Used like if ASSERT_EQ(res, Status::OK())
561
    // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state
562
    // ignore error messages during comparison
563
32.4k
    bool operator==(const Status& st) const { return _code == st._code; }
564
565
    // Used like if ASSERT_NE(res, Status::OK())
566
1.27M
    bool operator!=(const Status& st) const { return _code != st._code; }
567
568
    friend std::ostream& operator<<(std::ostream& ostr, const Status& status);
569
570
13.9k
    std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); }
571
572
0
    std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; }
573
574
    friend io::ObjectStorageStatus convert_to_obj_response(Status st);
575
576
private:
577
    int _code;
578
    struct ErrMsg {
579
        std::string _msg;
580
        std::string _stack;
581
    };
582
    std::unique_ptr<ErrMsg> _err_msg;
583
584
6.66k
    std::string code_as_string() const {
585
6.66k
        return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code))
586
6.66k
                               : fmt::format("E{}", (int16_t)_code);
587
6.66k
    }
588
};
589
590
// There are many thread using status to indicate the cancel state, one thread may update it and
591
// the other thread will read it. Status is not thread safe, for example, if one thread is update it
592
// and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and
593
// it is deconstructed during copy method.
594
// And also we could not use lock, because we need get status frequently to check if it is cancelled.
595
// The default value is ok.
596
class AtomicStatus {
597
public:
598
553k
    AtomicStatus() : error_st_(Status::OK()) {}
599
600
4.23M
    bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; }
601
602
104
    bool update(const Status& new_status) {
603
        // If new status is normal, or the old status is abnormal, then not need update
604
104
        if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) {
605
65
            return false;
606
65
        }
607
39
        std::lock_guard l(mutex_);
608
39
        if (error_code_.load(std::memory_order_acquire) != 0) {
609
0
            return false;
610
0
        }
611
39
        error_st_ = new_status;
612
39
        error_code_.store(static_cast<int16_t>(new_status.code()), std::memory_order_release);
613
39
        return true;
614
39
    }
615
616
9
    void reset() {
617
9
        std::lock_guard l(mutex_);
618
9
        error_st_ = Status::OK();
619
9
        error_code_ = 0;
620
9
    }
621
622
    // will copy a new status object to avoid concurrency
623
    // This stauts could only be called when ok==false
624
275
    Status status() const {
625
275
        std::lock_guard l(mutex_);
626
275
        return error_st_;
627
275
    }
628
629
    AtomicStatus(const AtomicStatus&) = delete;
630
    void operator=(const AtomicStatus&) = delete;
631
632
private:
633
    std::atomic_int16_t error_code_ = 0;
634
    Status error_st_;
635
    // mutex's lock is not a const method, but we will use this mutex in
636
    // some const method, so that it should be mutable.
637
    mutable std::mutex mutex_;
638
};
639
640
6.52k
inline std::ostream& operator<<(std::ostream& ostr, const Status& status) {
641
6.52k
    ostr << '[' << status.code_as_string() << ']';
642
6.52k
    ostr << status.msg();
643
6.52k
    if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) {
644
0
        ostr << '\n' << status._err_msg->_stack;
645
0
    }
646
6.52k
    return ostr;
647
6.52k
}
648
649
6.41k
inline std::string Status::to_string() const {
650
6.41k
    std::stringstream ss;
651
6.41k
    ss << *this;
652
6.41k
    return ss.str();
653
6.41k
}
654
655
1
inline std::string Status::to_string_no_stack() const {
656
1
    return fmt::format("[{}]{}", code_as_string(), msg());
657
1
}
658
659
// some generally useful macros
660
#define RETURN_IF_ERROR(stmt)           \
661
47.3M
    do {                                \
662
47.3M
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_
Line
Count
Source
662
29
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SG_IbLb0EEEEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESI_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESI_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESH_EEDaSB_SC_SD_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SG_IbLb1EEEEDaSB_SC_SD_
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESG_EEDaSB_SC_
Line
Count
Source
662
64
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESG_EEDaSB_SC_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_IbLb0EEEEDaSB_SC_
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_IbLb1EEEEDaSB_SC_
Unexecuted instantiation: schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv
Unexecuted instantiation: schema_scanner.cpp:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv
Unexecuted instantiation: schema_scanner.cpp:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv
Unexecuted instantiation: schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_view_dependency_scanner.cpp:_ZZN5doris27SchemaViewDependencyScanner34_get_view_dependency_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv
Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv
beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEENK3$_0clEv
Line
Count
Source
662
8.17k
        Status _status_ = (stmt);       \
segment.cpp:_ZZN5doris10segment_v27Segment18new_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_13IndexIteratorESt14default_deleteISC_EEENK3$_0clEv
Line
Count
Source
662
649
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
662
1.70k
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
662
1.66k
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_
Line
Count
Source
662
1.65k
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_
Line
Count
Source
662
15
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15_init_containerERNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS4_EEmiENK3$_0clERNS3_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
662
2.02k
        Status _status_ = (stmt);       \
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator32_init_null_map_and_clear_columnsERNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS4_EES8_mENK3$_0clERNS3_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE
Line
Count
Source
662
334
        Status _status_ = (stmt);       \
_ZZN5doris10segment_v225SparseColumnMergeIterator10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS5_EEPbENKUlPNS4_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
_ZZN5doris10segment_v225SparseColumnMergeIterator14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEENKUlPNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKNS_7VersionEPS6_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKSt6vectorINS_7VersionESaISA_EEPS6_PbENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE
Unexecuted instantiation: wal_manager.cpp:_ZZN5doris10WalManager18_replay_backgroundEvENK3$_0clEv
Unexecuted instantiation: wal_table.cpp:_ZZN5doris8WalTable16_get_column_infoEllRSt3mapIlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIlESaISt4pairIKlS7_EEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: fragment_mgr.cpp:_ZZN5doris11FragmentMgr24_get_or_create_query_ctxERKNS_23TPipelineFragmentParamsERKNS_27TPipelineFragmentParamsListENS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENK3$_0clERN5phmap13flat_hash_mapINS_9TUniqueIdESt8weak_ptrIS9_ENSD_4HashISF_EENSD_7EqualToISF_EESaISt4pairIKSF_SH_EEEE
Unexecuted instantiation: group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_0clEv
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_0clEvENKUlvE_clEv
Unexecuted instantiation: load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv
Unexecuted instantiation: load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv
Unexecuted instantiation: result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv
Line
Count
Source
662
3
        Status _status_ = (stmt);       \
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_0clEPNS_15BaseDeltaWriterE
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_10vectorized5BlockEPNS_19PRuntimeProfileTreeEPlSM_PmENK3$_0clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_10vectorized5BlockEPNS_19PRuntimeProfileTreeEPlSM_PmENK3$_0clEvENKUlvE_clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZZN5doris18RowIdStorageReader23read_batch_external_rowEmRKNS_17PRequestBlockDescESt10shared_ptrINS_9IdFileMapEERSt6vectorINS_14SlotDescriptorESaIS8_EES4_INS_11FileMappingEERKNS_9TUniqueIdERNS_10vectorized5BlockEPNS_19PRuntimeProfileTreeEPlSM_PmENK3$_0clEvENKUlvE0_clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEElRSt6vectorINS_14SlotDescriptorESaISB_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSM_SM_SM_RSt13unordered_mapINS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESt8equal_toISO_ESaISt4pairIKSO_SP_EEERNS_10vectorized5BlockEENK3$_3clEv
Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEElRSt6vectorINS_14SlotDescriptorESaISB_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSM_SM_SM_RSt13unordered_mapINS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESt8equal_toISO_ESaISt4pairIKSO_SP_EEERNS_10vectorized5BlockEENK3$_4clEv
Unexecuted instantiation: http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE0_clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev
Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS0_5BlockERKNS_23ExternalFileMappingInfoEPlSG_ENK3$_0clEv
Line
Count
Source
662
250
        Status _status_ = (stmt);       \
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner21read_lines_from_rangeERKNS_14TFileRangeDescERKNSt7__cxx114listIlSaIlEEEPNS0_5BlockERKNS_23ExternalFileMappingInfoEPlSG_ENK3$_1clEv
Line
Count
Source
662
242
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
11
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
44
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
117
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
193
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
117
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
202
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
78
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
276
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
78
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
288
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
276
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
288
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
276
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
288
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
276
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
288
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
203
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
168
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
662
622
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
463
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
387
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
651
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
252
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
700
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.02k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
594
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
609
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
198
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
1.96k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
728
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
252
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
700
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.09k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
594
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
728
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
252
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
700
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.09k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
594
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
44
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
39
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
284
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
142
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
39
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
296
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
148
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
284
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
296
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
284
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
296
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
105
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
147
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.81k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
259
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
321
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
245
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
399
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
662
1.94k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
819
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
969
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
336
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
168
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
620
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
1.75k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Line
Count
Source
662
78
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
556
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
651
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
420
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.26k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.38k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
1.06k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
728
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
420
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.26k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.45k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
1.06k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
44
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
117
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
201
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
117
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
210
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
225
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
284
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
234
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
296
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
126
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
126
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.81k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
290
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
290
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
210
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
210
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
3.06k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
518
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
518
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
119
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
105
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.68k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
626
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
407
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
308
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
336
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
662
1.94k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
938
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
850
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
651
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
420
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.26k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
2.38k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
1.06k
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
44
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE2EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
14
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
118
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
156
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
124
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
62
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
39
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
284
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
142
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_
Line
Count
Source
662
39
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_
Line
Count
Source
662
296
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_
Line
Count
Source
662
148
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
126
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
126
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.81k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
290
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
290
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
210
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
210
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
3.06k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
518
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
518
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
105
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
105
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
1.89k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
407
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
Line
Count
Source
662
59
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
407
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
189
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
231
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_
Line
Count
Source
662
3.06k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_
Line
Count
Source
662
487
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_
Line
Count
Source
662
549
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
245
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
399
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_
Line
Count
Source
662
1.94k
        Status _status_ = (stmt);       \
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_
Line
Count
Source
662
819
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESM_IbLb0EEEEDaSI_SJ_
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_EEDaSI_SJ_
Line
Count
Source
662
969
        Status _status_ = (stmt);       \
Unexecuted instantiation: async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv
Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev
Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev
Unexecuted instantiation: autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv
spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv
Line
Count
Source
662
68
        Status _status_ = (stmt);       \
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE8EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE9EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_
Unexecuted instantiation: meta_scanner.cpp:_ZZN5doris10vectorized11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Line
Count
Source
662
10
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Line
Count
Source
662
6
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Line
Count
Source
662
6
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_
Line
Count
Source
662
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Line
Count
Source
662
4
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_
Line
Count
Source
662
2
        Status _status_ = (stmt);       \
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_
Unexecuted instantiation: task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv
Unexecuted instantiation: cloud_meta_mgr.cpp:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESF_
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv
Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv
663
47.3M
        if (UNLIKELY(!_status_.ok())) { \
664
40.9k
            return _status_;            \
665
40.9k
        }                               \
666
47.3M
    } while (false)
667
668
#define PROPAGATE_FALSE(stmt)                     \
669
176k
    do {                                          \
670
176k
        if (UNLIKELY(!static_cast<bool>(stmt))) { \
671
1.18k
            return false;                         \
672
1.18k
        }                                         \
673
176k
    } while (false)
674
675
#define THROW_IF_ERROR(stmt)            \
676
1.21M
    do {                                \
677
1.21M
        Status _status_ = (stmt);       \
678
1.21M
        if (UNLIKELY(!_status_.ok())) { \
679
2
            throw Exception(_status_);  \
680
2
        }                               \
681
1.21M
    } while (false)
682
683
#define RETURN_IF_STATUS_ERROR(status, stmt) \
684
60
    do {                                     \
685
60
        status = (stmt);                     \
686
60
        if (UNLIKELY(!status.ok())) {        \
687
0
            return;                          \
688
0
        }                                    \
689
60
    } while (false)
690
691
#define EXIT_IF_ERROR(stmt)             \
692
    do {                                \
693
        Status _status_ = (stmt);       \
694
        if (UNLIKELY(!_status_.ok())) { \
695
            LOG(ERROR) << _status_;     \
696
            exit(1);                    \
697
        }                               \
698
    } while (false)
699
700
#define RETURN_FALSE_IF_ERROR(stmt)   \
701
39
    do {                              \
702
39
        Status status = (stmt);       \
703
39
        if (UNLIKELY(!status.ok())) { \
704
1
            return false;             \
705
1
        }                             \
706
39
    } while (false)
707
708
/// @brief Emit a warning if @c to_call returns a bad status.
709
#define WARN_IF_ERROR(to_call, warning_prefix)              \
710
12.7k
    do {                                                    \
711
12.7k
        Status _s = (to_call);                              \
712
12.7k
        if (UNLIKELY(!_s.ok())) {                           \
713
0
            LOG(WARNING) << (warning_prefix) << ": " << _s; \
714
0
        }                                                   \
715
12.7k
    } while (false);
716
717
#define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix)       \
718
21.0k
    do {                                                           \
719
21.0k
        Status _s = (stmt);                                        \
720
21.0k
        if (UNLIKELY(!_s.ok())) {                                  \
721
0
            LOG(WARNING) << (warning_prefix) << ", error: " << _s; \
722
0
            return _s;                                             \
723
0
        }                                                          \
724
21.0k
    } while (false);
725
726
template <typename T>
727
using Result = expected<T, Status>;
728
729
using ResultError = unexpected<Status>;
730
731
#define RETURN_IF_ERROR_RESULT(stmt)                \
732
1.19k
    do {                                            \
733
1.19k
        Status _status_ = (stmt);                   \
734
1.19k
        if (UNLIKELY(!_status_.ok())) {             \
735
0
            return unexpected(std::move(_status_)); \
736
0
        }                                           \
737
1.19k
    } while (false)
738
739
#define DORIS_TRY(stmt)                          \
740
123k
    ({                                           \
741
123k
        auto&& res = (stmt);                     \
742
123k
        using T = std::decay_t<decltype(res)>;   \
743
123k
        if (!res.has_value()) [[unlikely]] {     \
744
5
            return std::forward<T>(res).error(); \
745
5
        }                                        \
746
123k
        std::forward<T>(res).value();            \
747
123k
    });
748
749
#define TEST_TRY(stmt)                                                                          \
750
20
    ({                                                                                          \
751
3.14k
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized52TimeSharingTaskExecutorTest_test_tasks_complete_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
33
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized53TimeSharingTaskExecutorTest_test_quanta_fairness_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
8
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized53TimeSharingTaskExecutorTest_test_quanta_fairness_Test8TestBodyEvENK3$_1clEv
Line
Count
Source
751
4
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized52TimeSharingTaskExecutorTest_test_level_movement_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
1.20k
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized55TimeSharingTaskExecutorTest_test_level_multipliers_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
616
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized55TimeSharingTaskExecutorTest_test_level_multipliers_Test8TestBodyEvENK3$_1clEv
Line
Count
Source
751
616
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized55TimeSharingTaskExecutorTest_test_level_multipliers_Test8TestBodyEvENK3$_2clEv
Line
Count
Source
751
616
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized49TimeSharingTaskExecutorTest_test_task_handle_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
22
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized66TimeSharingTaskExecutorTest_test_min_max_concurrency_per_task_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
16
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized79TimeSharingTaskExecutorTest_test_user_specified_max_concurrencies_per_task_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
8
        auto&& res = (stmt);                                                                    \
time_sharing_task_executor_test.cpp:_ZZN5doris10vectorized96TimeSharingTaskExecutorTest_test_min_concurrency_per_task_when_target_concurrency_increases_Test8TestBodyEvENK3$_0clEv
Line
Count
Source
751
6
        auto&& res = (stmt);                                                                    \
752
20
        using T = std::decay_t<decltype(res)>;                                                  \
753
20
        if (!res.has_value()) [[unlikely]] {                                                    \
754
0
            ASSERT_TRUE(res.has_value()) << "Expected success, but got error: " << res.error(); \
755
0
        }                                                                                       \
756
20
        std::forward<T>(res).value();                                                           \
757
20
    })
758
759
} // namespace doris
760
761
// specify formatter for Status
762
template <>
763
struct fmt::formatter<doris::Status> {
764
    template <typename ParseContext>
765
13
    constexpr auto parse(ParseContext& ctx) {
766
13
        return ctx.begin();
767
13
    }
768
769
    template <typename FormatContext>
770
13
    auto format(doris::Status const& status, FormatContext& ctx) {
771
13
        return fmt::format_to(ctx.out(), "{}", status.to_string());
772
13
    }
773
};