/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 | 9 | TStatusError(PUBLISH_TIMEOUT, false); \ |
41 | 9 | TStatusError(MEM_ALLOC_FAILED, true); \ |
42 | 9 | TStatusError(BUFFER_ALLOCATION_FAILED, true); \ |
43 | 9 | TStatusError(INVALID_ARGUMENT, false); \ |
44 | 9 | TStatusError(INVALID_JSON_PATH, false); \ |
45 | 9 | TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true); \ |
46 | 9 | TStatusError(CORRUPTION, true); \ |
47 | 9 | TStatusError(IO_ERROR, true); \ |
48 | 9 | TStatusError(NOT_FOUND, true); \ |
49 | 9 | TStatusError(ALREADY_EXIST, true); \ |
50 | 9 | TStatusError(DIRECTORY_NOT_EMPTY, true); \ |
51 | 9 | TStatusError(NOT_IMPLEMENTED_ERROR, false); \ |
52 | 9 | TStatusError(END_OF_FILE, false); \ |
53 | 9 | TStatusError(INTERNAL_ERROR, true); \ |
54 | 9 | TStatusError(RUNTIME_ERROR, true); \ |
55 | 9 | TStatusError(JNI_ERROR, true); \ |
56 | 9 | TStatusError(CANCELLED, false); \ |
57 | 9 | TStatusError(ANALYSIS_ERROR, false); \ |
58 | 9 | TStatusError(MEM_LIMIT_EXCEEDED, false); \ |
59 | 9 | TStatusError(THRIFT_RPC_ERROR, true); \ |
60 | 9 | TStatusError(TIMEOUT, true); \ |
61 | 9 | TStatusError(LIMIT_REACH, false); \ |
62 | 9 | TStatusError(TOO_MANY_TASKS, true); \ |
63 | 9 | TStatusError(UNINITIALIZED, false); \ |
64 | 9 | TStatusError(INCOMPLETE, false); \ |
65 | 9 | TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \ |
66 | 9 | TStatusError(ABORTED, false); \ |
67 | 9 | TStatusError(DATA_QUALITY_ERROR, false); \ |
68 | 9 | TStatusError(LABEL_ALREADY_EXISTS, true); \ |
69 | 9 | TStatusError(NOT_AUTHORIZED, true); \ |
70 | 9 | TStatusError(BINLOG_DISABLE, false); \ |
71 | 9 | TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false); \ |
72 | 9 | TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false); \ |
73 | 9 | TStatusError(BINLOG_NOT_FOUND_DB, false); \ |
74 | 9 | TStatusError(BINLOG_NOT_FOUND_TABLE, false); \ |
75 | 9 | TStatusError(NETWORK_ERROR, false); \ |
76 | 9 | TStatusError(ILLEGAL_STATE, false); \ |
77 | 9 | TStatusError(SNAPSHOT_NOT_EXIST, true); \ |
78 | 9 | TStatusError(HTTP_ERROR, true); \ |
79 | 9 | TStatusError(TABLET_MISSING, true); \ |
80 | 9 | TStatusError(NOT_MASTER, true); \ |
81 | 9 | TStatusError(OBTAIN_LOCK_FAILED, false); \ |
82 | 9 | TStatusError(SNAPSHOT_EXPIRED, false); \ |
83 | 9 | TStatusError(DELETE_BITMAP_LOCK_ERROR, false); |
84 | | // E error_name, error_code, print_stacktrace |
85 | | #define APPLY_FOR_OLAP_ERROR_CODES(E) \ |
86 | 9 | E(OK, 0, false); \ |
87 | 9 | E(CALL_SEQUENCE_ERROR, -202, true); \ |
88 | 9 | E(BUFFER_OVERFLOW, -204, true); \ |
89 | 9 | E(CONFIG_ERROR, -205, true); \ |
90 | 9 | E(INIT_FAILED, -206, true); \ |
91 | 9 | E(INVALID_SCHEMA, -207, true); \ |
92 | 9 | E(CHECKSUM_ERROR, -208, true); \ |
93 | 9 | E(SIGNATURE_ERROR, -209, true); \ |
94 | 9 | E(CATCH_EXCEPTION, -210, true); \ |
95 | 9 | E(PARSE_PROTOBUF_ERROR, -211, true); \ |
96 | 9 | E(SERIALIZE_PROTOBUF_ERROR, -212, true); \ |
97 | 9 | E(WRITE_PROTOBUF_ERROR, -213, true); \ |
98 | 9 | E(VERSION_NOT_EXIST, -214, false); \ |
99 | 9 | E(TABLE_NOT_FOUND, -215, true); \ |
100 | 9 | E(TRY_LOCK_FAILED, -216, false); \ |
101 | 9 | E(EXCEEDED_LIMIT, -217, false); \ |
102 | 9 | E(OUT_OF_BOUND, -218, false); \ |
103 | 9 | E(INVALID_ROOT_PATH, -222, true); \ |
104 | 9 | E(NO_AVAILABLE_ROOT_PATH, -223, true); \ |
105 | 9 | E(CHECK_LINES_ERROR, -224, true); \ |
106 | 9 | E(INVALID_CLUSTER_INFO, -225, true); \ |
107 | 9 | E(TRANSACTION_NOT_EXIST, -226, false); \ |
108 | 9 | E(DISK_FAILURE, -227, true); \ |
109 | 9 | E(TRANSACTION_ALREADY_COMMITTED, -228, false); \ |
110 | 9 | E(TRANSACTION_ALREADY_VISIBLE, -229, false); \ |
111 | 9 | E(VERSION_ALREADY_MERGED, -230, true); \ |
112 | 9 | E(LZO_DISABLED, -231, true); \ |
113 | 9 | E(DISK_REACH_CAPACITY_LIMIT, -232, true); \ |
114 | 9 | E(TOO_MANY_TRANSACTIONS, -233, false); \ |
115 | 9 | E(INVALID_SNAPSHOT_VERSION, -234, true); \ |
116 | 9 | E(TOO_MANY_VERSION, -235, false); \ |
117 | 9 | E(NOT_INITIALIZED, -236, true); \ |
118 | 9 | E(ALREADY_CANCELLED, -237, false); \ |
119 | 9 | E(TOO_MANY_SEGMENTS, -238, false); \ |
120 | 9 | E(ALREADY_CLOSED, -239, false); \ |
121 | 9 | E(SERVICE_UNAVAILABLE, -240, true); \ |
122 | 9 | E(NEED_SEND_AGAIN, -241, false); \ |
123 | 9 | E(OS_ERROR, -242, true); \ |
124 | 9 | E(DIR_NOT_EXIST, -243, true); \ |
125 | 9 | E(CREATE_FILE_ERROR, -245, true); \ |
126 | 9 | E(STL_ERROR, -246, true); \ |
127 | 9 | E(MUTEX_ERROR, -247, true); \ |
128 | 9 | E(PTHREAD_ERROR, -248, true); \ |
129 | 9 | E(UB_FUNC_ERROR, -250, true); \ |
130 | 9 | E(COMPRESS_ERROR, -251, true); \ |
131 | 9 | E(DECOMPRESS_ERROR, -252, true); \ |
132 | 9 | E(FILE_ALREADY_EXIST, -253, true); \ |
133 | 9 | E(BAD_CAST, -254, true); \ |
134 | 9 | E(ARITHMETIC_OVERFLOW_ERRROR, -255, false); \ |
135 | 9 | E(PERMISSION_DENIED, -256, false); \ |
136 | 9 | E(QUERY_MEMORY_EXCEEDED, -257, false); \ |
137 | 9 | E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false); \ |
138 | 9 | E(PROCESS_MEMORY_EXCEEDED, -259, false); \ |
139 | 9 | E(INVALID_INPUT_SYNTAX, -260, false); \ |
140 | 9 | E(CE_CMD_PARAMS_ERROR, -300, true); \ |
141 | 9 | E(CE_BUFFER_TOO_SMALL, -301, true); \ |
142 | 9 | E(CE_CMD_NOT_VALID, -302, true); \ |
143 | 9 | E(CE_LOAD_TABLE_ERROR, -303, true); \ |
144 | 9 | E(CE_NOT_FINISHED, -304, true); \ |
145 | 9 | E(CE_TABLET_ID_EXIST, -305, true); \ |
146 | 9 | E(TABLE_VERSION_DUPLICATE_ERROR, -400, true); \ |
147 | 9 | E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true); \ |
148 | 9 | E(TABLE_INDEX_VALIDATE_ERROR, -402, true); \ |
149 | 9 | E(TABLE_INDEX_FIND_ERROR, -403, true); \ |
150 | 9 | E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true); \ |
151 | 9 | E(TABLE_CREATE_META_ERROR, -405, true); \ |
152 | 9 | E(TABLE_ALREADY_DELETED_ERROR, -406, false); \ |
153 | 9 | E(ENGINE_INSERT_EXISTS_TABLE, -500, true); \ |
154 | 9 | E(ENGINE_DROP_NOEXISTS_TABLE, -501, true); \ |
155 | 9 | E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true); \ |
156 | 9 | E(TABLE_INSERT_DUPLICATION_ERROR, -503, true); \ |
157 | 9 | E(DELETE_VERSION_ERROR, -504, true); \ |
158 | 9 | E(GC_SCAN_PATH_ERROR, -505, true); \ |
159 | 9 | E(ENGINE_INSERT_OLD_TABLET, -506, true); \ |
160 | 9 | E(FETCH_OTHER_ERROR, -600, true); \ |
161 | 9 | E(FETCH_TABLE_NOT_EXIST, -601, true); \ |
162 | 9 | E(FETCH_VERSION_ERROR, -602, true); \ |
163 | 9 | E(FETCH_SCHEMA_ERROR, -603, true); \ |
164 | 9 | E(FETCH_COMPRESSION_ERROR, -604, true); \ |
165 | 9 | E(FETCH_CONTEXT_NOT_EXIST, -605, true); \ |
166 | 9 | E(FETCH_GET_READER_PARAMS_ERR, -606, true); \ |
167 | 9 | E(FETCH_SAVE_SESSION_ERR, -607, true); \ |
168 | 9 | E(FETCH_MEMORY_EXCEEDED, -608, true); \ |
169 | 9 | E(READER_IS_UNINITIALIZED, -700, true); \ |
170 | 9 | E(READER_GET_ITERATOR_ERROR, -701, true); \ |
171 | 9 | E(CAPTURE_ROWSET_READER_ERROR, -702, true); \ |
172 | 9 | E(READER_READING_ERROR, -703, true); \ |
173 | 9 | E(READER_INITIALIZE_ERROR, -704, true); \ |
174 | 9 | E(BE_VERSION_NOT_MATCH, -800, true); \ |
175 | 9 | E(BE_REPLACE_VERSIONS_ERROR, -801, true); \ |
176 | 9 | E(BE_MERGE_ERROR, -802, true); \ |
177 | 9 | E(CAPTURE_ROWSET_ERROR, -804, true); \ |
178 | 9 | E(BE_SAVE_HEADER_ERROR, -805, true); \ |
179 | 9 | E(BE_INIT_OLAP_DATA, -806, true); \ |
180 | 9 | E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true); \ |
181 | 9 | E(BE_NO_SUITABLE_VERSION, -808, false); \ |
182 | 9 | E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true); \ |
183 | 9 | E(BE_ERROR_DELETE_ACTION, -811, true); \ |
184 | 9 | E(BE_SEGMENTS_OVERLAPPING, -812, true); \ |
185 | 9 | E(PUSH_INIT_ERROR, -900, true); \ |
186 | 9 | E(PUSH_VERSION_INCORRECT, -902, true); \ |
187 | 9 | E(PUSH_SCHEMA_MISMATCH, -903, true); \ |
188 | 9 | E(PUSH_CHECKSUM_ERROR, -904, true); \ |
189 | 9 | E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true); \ |
190 | 9 | E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true); \ |
191 | 9 | E(PUSH_BUILD_DELTA_ERROR, -907, true); \ |
192 | 9 | E(PUSH_VERSION_ALREADY_EXIST, -908, false); \ |
193 | 9 | E(PUSH_TABLE_NOT_EXIST, -909, true); \ |
194 | 9 | E(PUSH_INPUT_DATA_ERROR, -910, true); \ |
195 | 9 | E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false); \ |
196 | 9 | E(PUSH_BATCH_PROCESS_REMOVED, -912, true); \ |
197 | 9 | E(PUSH_COMMIT_ROWSET, -913, true); \ |
198 | 9 | E(PUSH_ROWSET_NOT_FOUND, -914, true); \ |
199 | 9 | E(INDEX_LOAD_ERROR, -1000, true); \ |
200 | 9 | E(INDEX_CHECKSUM_ERROR, -1002, true); \ |
201 | 9 | E(INDEX_DELTA_PRUNING, -1003, true); \ |
202 | 9 | E(DATA_ROW_BLOCK_ERROR, -1100, true); \ |
203 | 9 | E(DATA_FILE_TYPE_ERROR, -1101, true); \ |
204 | 9 | E(WRITER_INDEX_WRITE_ERROR, -1200, true); \ |
205 | 9 | E(WRITER_DATA_WRITE_ERROR, -1201, true); \ |
206 | 9 | E(WRITER_ROW_BLOCK_ERROR, -1202, true); \ |
207 | 9 | E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true); \ |
208 | 9 | E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true); \ |
209 | 9 | E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true); \ |
210 | 9 | E(HEADER_ADD_VERSION, -1400, true); \ |
211 | 9 | E(HEADER_DELETE_VERSION, -1401, true); \ |
212 | 9 | E(HEADER_ADD_PENDING_DELTA, -1402, true); \ |
213 | 9 | E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true); \ |
214 | 9 | E(HEADER_INVALID_FLAG, -1404, true); \ |
215 | 9 | E(HEADER_LOAD_INVALID_KEY, -1408, true); \ |
216 | 9 | E(HEADER_LOAD_JSON_HEADER, -1410, true); \ |
217 | 9 | E(HEADER_INIT_FAILED, -1411, true); \ |
218 | 9 | E(HEADER_PB_PARSE_FAILED, -1412, true); \ |
219 | 9 | E(HEADER_HAS_PENDING_DATA, -1413, true); \ |
220 | 9 | E(SCHEMA_SCHEMA_INVALID, -1500, true); \ |
221 | 9 | E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true); \ |
222 | 9 | E(ALTER_MULTI_TABLE_ERR, -1600, true); \ |
223 | 9 | E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true); \ |
224 | 9 | E(ALTER_STATUS_ERR, -1602, true); \ |
225 | 9 | E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true); \ |
226 | 9 | E(SCHEMA_CHANGE_INFO_INVALID, -1604, true); \ |
227 | 9 | E(QUERY_SPLIT_KEY_ERR, -1605, true); \ |
228 | 9 | E(DATA_QUALITY_ERR, -1606, false); \ |
229 | 9 | E(COLUMN_DATA_LOAD_BLOCK, -1700, true); \ |
230 | 9 | E(COLUMN_DATA_RECORD_INDEX, -1701, true); \ |
231 | 9 | E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true); \ |
232 | 9 | E(COLUMN_DATA_READ_VAR_INT, -1703, true); \ |
233 | 9 | E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true); \ |
234 | 9 | E(COLUMN_READ_STREAM, -1706, true); \ |
235 | 9 | E(COLUMN_STREAM_NOT_EXIST, -1716, true); \ |
236 | 9 | E(COLUMN_VALUE_NULL, -1717, true); \ |
237 | 9 | E(COLUMN_SEEK_ERROR, -1719, true); \ |
238 | 9 | E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true); \ |
239 | 9 | E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true); \ |
240 | 9 | E(DELETE_INVALID_CONDITION, -1900, true); \ |
241 | 9 | E(DELETE_UPDATE_HEADER_FAILED, -1901, true); \ |
242 | 9 | E(DELETE_SAVE_HEADER_FAILED, -1902, true); \ |
243 | 9 | E(DELETE_INVALID_PARAMETERS, -1903, true); \ |
244 | 9 | E(DELETE_INVALID_VERSION, -1904, true); \ |
245 | 9 | E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false); \ |
246 | 9 | E(CUMULATIVE_REPEAT_INIT, -2001, true); \ |
247 | 9 | E(CUMULATIVE_INVALID_PARAMETERS, -2002, true); \ |
248 | 9 | E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true); \ |
249 | 9 | E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \ |
250 | 9 | E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true); \ |
251 | 9 | E(CUMULATIVE_MISS_VERSION, -2006, true); \ |
252 | 9 | E(FULL_NO_SUITABLE_VERSION, -2008, false); \ |
253 | 9 | E(FULL_MISS_VERSION, -2009, true); \ |
254 | 9 | E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false); \ |
255 | 9 | E(META_INVALID_ARGUMENT, -3000, true); \ |
256 | 9 | E(META_OPEN_DB_ERROR, -3001, true); \ |
257 | 9 | E(META_KEY_NOT_FOUND, -3002, false); \ |
258 | 9 | E(META_GET_ERROR, -3003, true); \ |
259 | 9 | E(META_PUT_ERROR, -3004, true); \ |
260 | 9 | E(META_ITERATOR_ERROR, -3005, true); \ |
261 | 9 | E(META_DELETE_ERROR, -3006, true); \ |
262 | 9 | E(META_ALREADY_EXIST, -3007, true); \ |
263 | 9 | E(ROWSET_WRITER_INIT, -3100, true); \ |
264 | 9 | E(ROWSET_SAVE_FAILED, -3101, true); \ |
265 | 9 | E(ROWSET_GENERATE_ID_FAILED, -3102, true); \ |
266 | 9 | E(ROWSET_DELETE_FILE_FAILED, -3103, true); \ |
267 | 9 | E(ROWSET_BUILDER_INIT, -3104, true); \ |
268 | 9 | E(ROWSET_TYPE_NOT_FOUND, -3105, true); \ |
269 | 9 | E(ROWSET_ALREADY_EXIST, -3106, true); \ |
270 | 9 | E(ROWSET_CREATE_READER, -3107, true); \ |
271 | 9 | E(ROWSET_INVALID, -3108, true); \ |
272 | 9 | E(ROWSET_READER_INIT, -3110, true); \ |
273 | 9 | E(ROWSET_INVALID_STATE_TRANSITION, -3112, true); \ |
274 | 9 | E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true); \ |
275 | 9 | E(ROWSET_ADD_MIGRATION_V2, -3114, true); \ |
276 | 9 | E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false); \ |
277 | 9 | E(ROWSET_RENAME_FILE_FAILED, -3116, false); \ |
278 | 9 | E(SEGCOMPACTION_INIT_READER, -3117, false); \ |
279 | 9 | E(SEGCOMPACTION_INIT_WRITER, -3118, false); \ |
280 | 9 | E(SEGCOMPACTION_FAILED, -3119, false); \ |
281 | 9 | E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true); \ |
282 | 9 | E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true); \ |
283 | 9 | E(INDEX_INVALID_PARAMETERS, -6000, false); \ |
284 | 9 | E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false); \ |
285 | 9 | E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false); \ |
286 | 9 | E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false); \ |
287 | 9 | E(INVERTED_INDEX_BYPASS, -6004, false); \ |
288 | 9 | E(INVERTED_INDEX_NO_TERMS, -6005, false); \ |
289 | 9 | E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true); \ |
290 | 9 | E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false); \ |
291 | 9 | E(INVERTED_INDEX_BUILD_WAITTING, -6008, false); \ |
292 | 9 | E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false); \ |
293 | 9 | E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false); \ |
294 | 9 | E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false); \ |
295 | 9 | E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false); \ |
296 | 9 | E(KEY_NOT_FOUND, -7000, false); \ |
297 | 9 | E(KEY_ALREADY_EXISTS, -7001, false); \ |
298 | 9 | E(ENTRY_NOT_FOUND, -7002, false); \ |
299 | 9 | E(NEW_ROWS_IN_PARTIAL_UPDATE, -7003, false); \ |
300 | 9 | E(INVALID_TABLET_STATE, -7211, false); \ |
301 | 9 | E(ROWSETS_EXPIRED, -7311, false); \ |
302 | 9 | E(CGROUP_ERROR, -7411, false); \ |
303 | 9 | 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 | 9 | ErrorCodeInitializer(int temp) : signal_value(temp) { |
327 | 589k | for (auto& error_state : error_states) { |
328 | 589k | error_state.error_code = 0; |
329 | 589k | } |
330 | 9 | #define M(NAME, ENABLESTACKTRACE) \ |
331 | 396 | error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \ |
332 | 396 | error_states[TStatusCode::NAME].description = #NAME; \ |
333 | 396 | error_states[TStatusCode::NAME].error_code = TStatusCode::NAME; |
334 | 396 | APPLY_FOR_THRIFT_ERROR_CODES(M) |
335 | 9 | #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 | 9 | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) \ |
344 | 1.96k | assert(error_states[abs(ERRORCODE)].error_code == 0); \ |
345 | 1.96k | error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \ |
346 | 1.96k | error_states[abs(ERRORCODE)].error_code = ERRORCODE; |
347 | 1.96k | APPLY_FOR_OLAP_ERROR_CODES(M) |
348 | 1.96k | #undef M |
349 | 1.96k | } |
350 | | |
351 | 9 | 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 | 9 | if (signal_value == 0) { |
355 | 0 | exit(-1); |
356 | 0 | } |
357 | 9 | } |
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 | 4.23G | Status() : _code(ErrorCode::OK), _err_msg(nullptr) {} |
369 | | |
370 | | // used to convert Exception to Status |
371 | 89.7k | Status(int code, std::string msg, std::string stack = "") : _code(code) { |
372 | 89.7k | _err_msg = std::make_unique<ErrMsg>(); |
373 | 89.7k | _err_msg->_msg = std::move(msg); |
374 | 89.7k | if (config::enable_stacktrace) { |
375 | 87.3k | _err_msg->_stack = std::move(stack); |
376 | 87.3k | } |
377 | 89.7k | } |
378 | | |
379 | | // copy c'tor makes copy of error detail so Status can be returned by value |
380 | 324M | Status(const Status& rhs) { *this = rhs; } |
381 | | |
382 | | // move c'tor |
383 | 57.6M | Status(Status&& rhs) noexcept = default; |
384 | | |
385 | | // same as copy c'tor |
386 | 331M | Status& operator=(const Status& rhs) { |
387 | 331M | _code = rhs._code; |
388 | 331M | if (rhs._err_msg) { |
389 | 1.53M | _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg); |
390 | 329M | } 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 | 329M | _err_msg.reset(); |
395 | 329M | } |
396 | 331M | return *this; |
397 | 331M | } |
398 | | |
399 | | // move assign |
400 | 169M | Status& operator=(Status&& rhs) noexcept { |
401 | 169M | _code = rhs._code; |
402 | 169M | if (rhs._err_msg) { |
403 | 3.78M | _err_msg = std::move(rhs._err_msg); |
404 | 165M | } else { |
405 | 165M | _err_msg.reset(); |
406 | 165M | } |
407 | 169M | return *this; |
408 | 169M | } |
409 | | |
410 | | template <bool stacktrace = true> |
411 | 707k | Status static create(const TStatus& status) { |
412 | 707k | return Error<stacktrace>( |
413 | 707k | status.status_code, |
414 | 707k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); |
415 | 707k | } _ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE Line | Count | Source | 411 | 14.4k | Status static create(const TStatus& status) { | 412 | 14.4k | return Error<stacktrace>( | 413 | 14.4k | status.status_code, | 414 | 14.4k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 415 | 14.4k | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE Line | Count | Source | 411 | 693k | Status static create(const TStatus& status) { | 412 | 693k | return Error<stacktrace>( | 413 | 693k | status.status_code, | 414 | 18.4E | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 415 | 693k | } |
|
416 | | |
417 | | template <bool stacktrace = true> |
418 | 5.11M | Status static create(const PStatus& pstatus) { |
419 | 5.11M | return Error<stacktrace>( |
420 | 5.11M | pstatus.status_code(), |
421 | 5.11M | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); |
422 | 5.11M | } _ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE Line | Count | Source | 418 | 5.09M | Status static create(const PStatus& pstatus) { | 419 | 5.09M | return Error<stacktrace>( | 420 | 5.09M | pstatus.status_code(), | 421 | 18.4E | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 422 | 5.09M | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE Line | Count | Source | 418 | 19.4k | Status static create(const PStatus& pstatus) { | 419 | 19.4k | return Error<stacktrace>( | 420 | 19.4k | pstatus.status_code(), | 421 | 19.4k | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 422 | 19.4k | } |
|
423 | | |
424 | | template <int code, bool stacktrace = true, typename... Args> |
425 | 20.1M | Status static Error(std::string_view msg, Args&&... args) { |
426 | 20.1M | Status status; |
427 | 20.1M | status._code = code; |
428 | 20.1M | status._err_msg = std::make_unique<ErrMsg>(); |
429 | 20.1M | if constexpr (sizeof...(args) == 0) { |
430 | 18.4M | status._err_msg->_msg = msg; |
431 | 18.4M | } else { |
432 | 1.73M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
433 | 1.73M | } |
434 | 20.1M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
435 | 20.1M | config::enable_stacktrace) { |
436 | | // Delete the first one frame pointers, which are inside the status.h |
437 | 105k | status._err_msg->_stack = get_stack_trace(1); |
438 | 105k | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
439 | 105k | } |
440 | 20.1M | return status; |
441 | 20.1M | } Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 61.2k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 61.2k | Status status; | 427 | 61.2k | status._code = code; | 428 | 61.2k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 61.2k | if constexpr (sizeof...(args) == 0) { | 430 | 61.2k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 61.2k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 61.2k | 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 | 61.2k | return status; | 441 | 61.2k | } |
_ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 11.0k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 11.0k | Status status; | 427 | 11.0k | status._code = code; | 428 | 11.0k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 11.0k | if constexpr (sizeof...(args) == 0) { | 430 | 11.0k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 11.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 11.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 | 11.0k | return status; | 441 | 11.0k | } |
_ZN5doris6Status5ErrorILi4ELb1EJEEES0_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 | 2 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 2 | } | 440 | 2 | return status; | 441 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _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: _ZN5doris6Status5ErrorILi48ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 3.67k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 3.67k | Status status; | 427 | 3.67k | status._code = code; | 428 | 3.67k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 3.67k | if constexpr (sizeof...(args) == 0) { | 430 | 3.67k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 3.67k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 3.67k | 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.67k | return status; | 441 | 3.67k | } |
_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: _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_ _ZN5doris6Status5ErrorILi3ELb1EJNSt7__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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 188 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 188 | Status status; | 427 | 188 | status._code = code; | 428 | 188 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 188 | if constexpr (sizeof...(args) == 0) { | 430 | 188 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 188 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 188 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 83 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 83 | } | 440 | 188 | return status; | 441 | 188 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 21 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 21 | Status status; | 427 | 21 | status._code = code; | 428 | 21 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 21 | if constexpr (sizeof...(args) == 0) { | 430 | 21 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 21 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 21 | 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 | 21 | return status; | 441 | 21 | } |
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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 17.1k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 17.1k | Status status; | 427 | 17.1k | status._code = code; | 428 | 17.1k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 17.1k | } else { | 432 | 17.1k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 17.1k | } | 434 | 17.1k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 17.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 | 17.1k | return status; | 441 | 17.1k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 10 | } else { | 432 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 10 | } | 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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 10 | return status; | 441 | 10 | } |
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: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 574k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 574k | Status status; | 427 | 574k | status._code = code; | 428 | 574k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 574k | if constexpr (sizeof...(args) == 0) { | 430 | 574k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 574k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 574k | 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 | 574k | return status; | 441 | 574k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 350 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 350 | Status status; | 427 | 350 | status._code = code; | 428 | 350 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 350 | } else { | 432 | 350 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 350 | } | 434 | 350 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 350 | 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 | 350 | return status; | 441 | 350 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 49 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 49 | Status status; | 427 | 49 | status._code = code; | 428 | 49 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 49 | } else { | 432 | 49 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 49 | } | 434 | 49 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 49 | 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 | 49 | return status; | 441 | 49 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 105 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 105 | Status status; | 427 | 105 | status._code = code; | 428 | 105 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 105 | } else { | 432 | 105 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 105 | } | 434 | 105 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 105 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 101 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 101 | } | 440 | 105 | return status; | 441 | 105 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 136 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 136 | Status status; | 427 | 136 | status._code = code; | 428 | 136 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 136 | } else { | 432 | 136 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 136 | } | 434 | 136 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 136 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 123 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 123 | } | 440 | 136 | return status; | 441 | 136 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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 | 5 | if constexpr (sizeof...(args) == 0) { | 430 | 5 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 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: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _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 | } |
_ZN5doris6Status5ErrorILi7ELb1EJEEES0_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 | 14 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 14 | } | 440 | 14 | return status; | 441 | 14 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 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 | 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 | } |
_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_ _ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 21 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 21 | Status status; | 427 | 21 | status._code = code; | 428 | 21 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 21 | if constexpr (sizeof...(args) == 0) { | 430 | 21 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 21 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 21 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 2 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 2 | } | 440 | 21 | return status; | 441 | 21 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 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 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 4.07k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 4.07k | Status status; | 427 | 4.07k | status._code = code; | 428 | 4.07k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 4.07k | } else { | 432 | 4.07k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 4.07k | } | 434 | 4.07k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 4.07k | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 21 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 21 | } | 440 | 4.07k | return status; | 441 | 4.07k | } |
_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 | } |
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 844k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 844k | Status status; | 427 | 844k | status._code = code; | 428 | 844k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 844k | if constexpr (sizeof...(args) == 0) { | 430 | 844k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 844k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 844k | 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 | 844k | return status; | 441 | 844k | } |
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 | 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 | } |
_ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ 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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 10 | } else { | 432 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 10 | } | 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 | } |
_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: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 6.07M | Status static Error(std::string_view msg, Args&&... args) { | 426 | 6.07M | Status status; | 427 | 6.07M | status._code = code; | 428 | 6.07M | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 6.07M | if constexpr (sizeof...(args) == 0) { | 430 | 6.07M | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 6.07M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 6.07M | 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.07M | return status; | 441 | 6.07M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _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 | 2 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 2 | } | 440 | 48.0k | return status; | 441 | 48.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ 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: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 147k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 147k | Status status; | 427 | 147k | status._code = code; | 428 | 147k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 147k | } else { | 432 | 147k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 147k | } | 434 | 147k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 147k | 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 | 147k | return status; | 441 | 147k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3000ELb1EJRNS_11TabletStateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 35.8k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 35.8k | Status status; | 427 | 35.8k | status._code = code; | 428 | 35.8k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 35.8k | if constexpr (sizeof...(args) == 0) { | 430 | 35.8k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 35.8k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 35.8k | 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 | 35.8k | return status; | 441 | 35.8k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 144 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 144 | Status status; | 427 | 144 | status._code = code; | 428 | 144 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 144 | if constexpr (sizeof...(args) == 0) { | 430 | 144 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 144 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 144 | 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 | 144 | return status; | 441 | 144 | } |
_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 | 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: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 1.61k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.61k | Status status; | 427 | 1.61k | status._code = code; | 428 | 1.61k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 1.61k | if constexpr (sizeof...(args) == 0) { | 430 | 1.61k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 1.61k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.61k | 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.61k | return status; | 441 | 1.61k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 22 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 22 | Status status; | 427 | 22 | status._code = code; | 428 | 22 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 22 | } else { | 432 | 22 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 22 | } | 434 | 22 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 22 | 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 | 22 | return status; | 441 | 22 | } |
_ZN5doris6Status5ErrorILi6ELb1EJlEEES0_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 | 4 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 4 | } | 440 | 4 | return status; | 441 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: _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: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 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 | } |
_ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 10 | } else { | 432 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 10 | } | 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 | } |
_ZN5doris6Status5ErrorILin7003ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 36 | } else { | 432 | 36 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 36 | } | 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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3103ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 10.2M | Status static Error(std::string_view msg, Args&&... args) { | 426 | 10.2M | Status status; | 427 | 10.2M | status._code = code; | 428 | 10.2M | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 10.2M | if constexpr (sizeof...(args) == 0) { | 430 | 10.2M | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 10.3M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 10.2M | 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.2M | return status; | 441 | 10.2M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: _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: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin608ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3118ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3117ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _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_ 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 | 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 | } |
_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 | } |
_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: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 274 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 274 | Status status; | 427 | 274 | status._code = code; | 428 | 274 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 274 | if constexpr (sizeof...(args) == 0) { | 430 | 274 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 274 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 274 | 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 | 274 | return status; | 441 | 274 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: bitshuffle_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6000ELb1EJEEES0_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: _ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJEEES0_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: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6004ELb1EJRmRiRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 576 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 576 | Status status; | 427 | 576 | status._code = code; | 428 | 576 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 576 | } else { | 432 | 576 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 576 | } | 434 | 592 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 576 | 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 | 576 | return status; | 441 | 576 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__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: _ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 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_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 31.8k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 31.8k | Status status; | 427 | 31.8k | status._code = code; | 428 | 31.8k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 31.8k | } else { | 432 | 31.8k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 31.8k | } | 434 | 31.8k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 31.8k | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 31.8k | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 31.8k | } | 440 | 31.8k | return status; | 441 | 31.8k | } |
_ZN5doris6Status5ErrorILin7000ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 5.98k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 5.98k | Status status; | 427 | 5.98k | status._code = code; | 428 | 5.98k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 5.98k | if constexpr (sizeof...(args) == 0) { | 430 | 5.98k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 5.98k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 5.98k | 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.98k | return status; | 441 | 5.98k | } |
_ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 213 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 213 | Status status; | 427 | 213 | status._code = code; | 428 | 213 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 213 | if constexpr (sizeof...(args) == 0) { | 430 | 213 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 213 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 213 | 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 | 213 | return status; | 441 | 213 | } |
_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: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 73.1k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 73.1k | Status status; | 427 | 73.1k | status._code = code; | 428 | 73.1k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 73.1k | } else { | 432 | 73.1k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 73.1k | } | 434 | 73.1k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 73.1k | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 73.1k | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 73.1k | } | 440 | 73.1k | return status; | 441 | 73.1k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeEEEES0_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 | } |
_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_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 1.43k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.43k | Status status; | 427 | 1.43k | status._code = code; | 428 | 1.43k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 1.43k | } else { | 432 | 1.43k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 1.43k | } | 434 | 1.43k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.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 | 1.43k | return status; | 441 | 1.43k | } |
_ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 102 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 102 | Status status; | 427 | 102 | status._code = code; | 428 | 102 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 102 | } else { | 432 | 102 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 102 | } | 434 | 102 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 102 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 100 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 100 | } | 440 | 102 | return status; | 441 | 102 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_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_ _ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 77 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 77 | Status status; | 427 | 77 | status._code = code; | 428 | 77 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 77 | } else { | 432 | 77 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 77 | } | 434 | 77 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 77 | 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 | 77 | return status; | 441 | 77 | } |
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: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 7.67k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 7.67k | Status status; | 427 | 7.67k | status._code = code; | 428 | 7.67k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 7.67k | if constexpr (sizeof...(args) == 0) { | 430 | 7.67k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 7.68k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 7.67k | 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.67k | return status; | 441 | 7.67k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin243ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin234ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 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_ _ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 300k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 300k | Status status; | 427 | 300k | status._code = code; | 428 | 300k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 300k | } else { | 432 | 300k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 300k | } | 434 | 300k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 300k | 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 | 300k | return status; | 441 | 300k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJRKlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 918 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 918 | Status status; | 427 | 918 | status._code = code; | 428 | 918 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 918 | } else { | 432 | 918 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 918 | } | 434 | 918 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 918 | 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 | 918 | return status; | 441 | 918 | } |
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_ _ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 265k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 265k | Status status; | 427 | 265k | status._code = code; | 428 | 265k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 265k | if constexpr (sizeof...(args) == 0) { | 430 | 265k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 265k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 265k | 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 | 265k | return status; | 441 | 265k | } |
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 183 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 183 | Status status; | 427 | 183 | status._code = code; | 428 | 183 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 183 | if constexpr (sizeof...(args) == 0) { | 430 | 183 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 183 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 183 | 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 | 183 | return status; | 441 | 183 | } |
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 14.1k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 14.1k | Status status; | 427 | 14.1k | status._code = code; | 428 | 14.1k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 14.1k | if constexpr (sizeof...(args) == 0) { | 430 | 14.1k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 14.1k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 14.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 | 14.1k | return status; | 441 | 14.1k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 314 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 314 | Status status; | 427 | 314 | status._code = code; | 428 | 314 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 314 | } else { | 432 | 314 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 314 | } | 434 | 314 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 314 | 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 | 314 | return status; | 441 | 314 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin506ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin405ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS0_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJRlRilRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1412ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 425 | 3.71k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 3.71k | Status status; | 427 | 3.71k | status._code = code; | 428 | 3.71k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 3.71k | } else { | 432 | 3.71k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 3.71k | } | 434 | 3.71k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 3.71k | 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.71k | return status; | 441 | 3.71k | } |
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 | } |
_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 | } |
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: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 25 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 25 | Status status; | 427 | 25 | status._code = code; | 428 | 25 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 25 | } else { | 432 | 25 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 25 | } | 434 | 25 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 25 | 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 | 25 | return status; | 441 | 25 | } |
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: _ZN5doris6Status5ErrorILin235ELb1EJmRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 302 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 302 | Status status; | 427 | 302 | status._code = code; | 428 | 302 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 302 | if constexpr (sizeof...(args) == 0) { | 430 | 302 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 302 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 302 | 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 | 302 | return status; | 441 | 302 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_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: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin233ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILin911ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 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 | } |
_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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRmRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | } |
_ZN5doris6Status5ErrorILi6ELb0EJNSt7__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: _ZN5doris6Status5ErrorILin217ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi42ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 86 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 86 | Status status; | 427 | 86 | status._code = code; | 428 | 86 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 86 | } else { | 432 | 86 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 86 | } | 434 | 86 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 86 | 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 | 86 | return status; | 441 | 86 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 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 | } |
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 1 | return status; | 441 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 214 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 214 | Status status; | 427 | 214 | status._code = code; | 428 | 214 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 214 | if constexpr (sizeof...(args) == 0) { | 430 | 214 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 214 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 214 | 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 | 214 | return status; | 441 | 214 | } |
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_ _ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | } |
_ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 1.01M | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.01M | Status status; | 427 | 1.01M | status._code = code; | 428 | 1.01M | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 1.01M | } else { | 432 | 1.01M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 1.01M | } | 434 | 1.01M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.01M | 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.01M | return status; | 441 | 1.01M | } |
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 913 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 913 | Status status; | 427 | 913 | status._code = code; | 428 | 913 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 913 | if constexpr (sizeof...(args) == 0) { | 430 | 913 | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 913 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 913 | 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 | 913 | return status; | 441 | 913 | } |
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 | } |
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_ _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 8 | } else { | 432 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 8 | } | 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: _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: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 10 | } else { | 432 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 10 | } | 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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi9ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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_ _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: _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7411ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 128k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 128k | Status status; | 427 | 128k | status._code = code; | 428 | 128k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 128k | if constexpr (sizeof...(args) == 0) { | 430 | 128k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 128k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 128k | 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 | 128k | return status; | 441 | 128k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi48ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_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 | 4 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 4 | } | 440 | 4 | return status; | 441 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_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_ _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_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: _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_ _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 | } |
_ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 1.04k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.04k | Status status; | 427 | 1.04k | status._code = code; | 428 | 1.04k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 1.04k | } else { | 432 | 1.04k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 1.04k | } | 434 | 1.04k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.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 | 1.04k | return status; | 441 | 1.04k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 2.62k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 2.62k | Status status; | 427 | 2.62k | status._code = code; | 428 | 2.62k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 2.62k | } else { | 432 | 2.62k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 2.62k | } | 434 | 2.62k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 2.62k | 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.62k | return status; | 441 | 2.62k | } |
_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: _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_ _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 1 | return status; | 441 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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_ _ZN5doris6Status5ErrorILi47ELb0EJRKNSt7__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 | } |
_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_ _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_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 | } |
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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _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 | } |
_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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 16.1k | return status; | 441 | 16.1k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 4.50k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 4.50k | Status status; | 427 | 4.50k | status._code = code; | 428 | 4.50k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 4.50k | } else { | 432 | 4.50k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 4.50k | } | 434 | 4.50k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 4.50k | 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.50k | return status; | 441 | 4.50k | } |
_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: _ZN5doris6Status5ErrorILi33ELb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJlEEES0_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: _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.6k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 11.6k | Status status; | 427 | 11.6k | status._code = code; | 428 | 11.6k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 11.6k | } else { | 432 | 11.6k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 11.6k | } | 434 | 11.6k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 11.6k | 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.6k | return status; | 441 | 11.6k | } |
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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJimEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJmRKmEEES0_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 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 10 | } else { | 432 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 10 | } | 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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_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 | } |
_ZN5doris6Status5ErrorILi47ELb0EJRNSt7__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: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 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: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_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 | } |
_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_ _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 | } |
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: _ZN5doris6Status5ErrorILi4ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbiRKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiRKS7_bEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_10vectorized20SplitThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi48ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_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: _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: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_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 | } |
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 1 | return status; | 441 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 333 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 333 | Status status; | 427 | 333 | status._code = code; | 428 | 333 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 333 | } else { | 432 | 333 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 333 | } | 434 | 333 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 333 | 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 | 333 | return status; | 441 | 333 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_ Line | Count | Source | 425 | 1.08k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.08k | Status status; | 427 | 1.08k | status._code = code; | 428 | 1.08k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 1.08k | } else { | 432 | 1.08k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 1.08k | } | 434 | 1.08k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.08k | 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.08k | return status; | 441 | 1.08k | } |
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_ _ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ 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: _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 | 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 | 1 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 1 | } | 440 | 5 | return status; | 441 | 5 | } |
_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: _ZN5doris6Status5ErrorILi33ELb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ 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 | } |
_ZN5doris6Status5ErrorILi47ELb0EJEEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRmRKmEEES0_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmRmEEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_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 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRmS2_EEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKclEEES0_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: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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 | } |
_ZN5doris6Status5ErrorILi4ELb0EJEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 425 | 24.3k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 24.3k | Status status; | 427 | 24.3k | status._code = code; | 428 | 24.3k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 24.3k | } else { | 432 | 24.3k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 24.3k | } | 434 | 24.3k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 24.3k | 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 | 24.3k | return status; | 441 | 24.3k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 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: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_ Line | Count | Source | 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: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Line | Count | Source | 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_ _ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 101k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 101k | Status status; | 427 | 101k | status._code = code; | 428 | 101k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | 101k | if constexpr (sizeof...(args) == 0) { | 430 | 101k | status._err_msg->_msg = msg; | 431 | | } else { | 432 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | | } | 434 | 101k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 101k | 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 | 101k | return status; | 441 | 101k | } |
_ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Line | Count | Source | 425 | 42 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 42 | Status status; | 427 | 42 | status._code = code; | 428 | 42 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 42 | } else { | 432 | 42 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 42 | } | 434 | 42 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 42 | 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 | 42 | return status; | 441 | 42 | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Line | Count | Source | 425 | 1.26k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 1.26k | Status status; | 427 | 1.26k | status._code = code; | 428 | 1.26k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 1.26k | } else { | 432 | 1.26k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 1.26k | } | 434 | 1.26k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 1.26k | 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.26k | return status; | 441 | 1.26k | } |
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_ _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ 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: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 425 | 77 | Status static Error(std::string_view msg, Args&&... args) { | 426 | 77 | Status status; | 427 | 77 | status._code = code; | 428 | 77 | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 77 | } else { | 432 | 77 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 77 | } | 434 | 77 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 77 | config::enable_stacktrace) { | 436 | | // Delete the first one frame pointers, which are inside the status.h | 437 | 77 | status._err_msg->_stack = get_stack_trace(1); | 438 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 439 | 77 | } | 440 | 77 | return status; | 441 | 77 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 3.06k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 3.06k | Status status; | 427 | 3.06k | status._code = code; | 428 | 3.06k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 3.06k | } else { | 432 | 3.06k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 3.06k | } | 434 | 3.06k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 3.06k | 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.06k | return status; | 441 | 3.06k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 425 | 28.0k | Status static Error(std::string_view msg, Args&&... args) { | 426 | 28.0k | Status status; | 427 | 28.0k | status._code = code; | 428 | 28.0k | status._err_msg = std::make_unique<ErrMsg>(); | 429 | | if constexpr (sizeof...(args) == 0) { | 430 | | status._err_msg->_msg = msg; | 431 | 28.0k | } else { | 432 | 28.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 433 | 28.0k | } | 434 | 28.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 435 | 28.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 | 28.0k | return status; | 441 | 28.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRA10_KcPS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ |
442 | | |
443 | | template <bool stacktrace = true, typename... Args> |
444 | 6.63M | Status static Error(int code, std::string_view msg, Args&&... args) { |
445 | 6.63M | Status status; |
446 | 6.63M | status._code = code; |
447 | 6.63M | status._err_msg = std::make_unique<ErrMsg>(); |
448 | 6.63M | if constexpr (sizeof...(args) == 0) { |
449 | 6.63M | status._err_msg->_msg = msg; |
450 | 6.63M | } else { |
451 | 0 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
452 | 0 | } |
453 | 6.63M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
454 | 6.63M | config::enable_stacktrace) { |
455 | 22 | status._err_msg->_stack = get_stack_trace(1); |
456 | 22 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
457 | 22 | } |
458 | 6.63M | return status; |
459 | 6.63M | } _ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 444 | 5.07M | Status static Error(int code, std::string_view msg, Args&&... args) { | 445 | 5.07M | Status status; | 446 | 5.07M | status._code = code; | 447 | 5.07M | status._err_msg = std::make_unique<ErrMsg>(); | 448 | 5.07M | if constexpr (sizeof...(args) == 0) { | 449 | 5.07M | status._err_msg->_msg = msg; | 450 | | } else { | 451 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 452 | | } | 453 | 5.20M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 454 | 5.07M | config::enable_stacktrace) { | 455 | 22 | status._err_msg->_stack = get_stack_trace(1); | 456 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 457 | 22 | } | 458 | 5.07M | return status; | 459 | 5.07M | } |
_ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 444 | 1.55M | Status static Error(int code, std::string_view msg, Args&&... args) { | 445 | 1.55M | Status status; | 446 | 1.55M | status._code = code; | 447 | 1.55M | status._err_msg = std::make_unique<ErrMsg>(); | 448 | 1.55M | if constexpr (sizeof...(args) == 0) { | 449 | 1.55M | status._err_msg->_msg = msg; | 450 | | } else { | 451 | | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 452 | | } | 453 | 1.55M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 454 | 1.55M | 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 | 1.55M | return status; | 459 | 1.55M | } |
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 | 3.97G | 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: _ZN5doris6Status10FatalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ 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 | 480k | static Status name(std::string_view msg, Args&&... args) { \ |
475 | 480k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
476 | 480k | } _ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 275 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 275 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 275 | } |
_ZN5doris6Status12RuntimeErrorILb1EJEEES0_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: _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 | } |
_ZN5doris6Status12NotSupportedILb1EJNSt7__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 | } |
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | } |
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 177 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 177 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 177 | } |
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 474 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 10 | } |
_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: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT0_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 105 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 105 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 105 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 474 | 136 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 136 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 136 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJEEES0_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 | } |
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 14 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 14 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 14 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 21 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 21 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 21 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 474 | 22 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 22 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 22 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ 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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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 | } |
_ZN5doris6Status13InternalErrorILb1EJlEEES0_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: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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: bitshuffle_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_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_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status8NotFoundILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 31.8k | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 31.8k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 31.8k | } |
_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: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status8NotFoundILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 73.1k | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 73.1k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 73.1k | } |
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: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 474 | 102 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 102 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 102 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 7.71k | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 7.71k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 7.71k | } |
Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 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 | } |
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 300k | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 300k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 300k | } |
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: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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 | } |
_ZN5doris6Status13InternalErrorILb0EJNSt7__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: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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 | } |
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_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_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 313 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 313 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 313 | } |
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 913 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 913 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 913 | } |
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 | } |
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_ _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: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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_ _ZN5doris6Status8JniErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ 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 | } |
_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: _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_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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: _ZN5doris6Status13InternalErrorILb1EJRmRKiEEES0_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 | } |
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _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 | } |
_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: _ZN5doris6Status13InternalErrorILb1EJN5arrow4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 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: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RbS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_ _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 | } |
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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: _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: _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: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_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: _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 | 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: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 474 | 14 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 14 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 14 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ _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: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT0_ Line | Count | Source | 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: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Line | Count | Source | 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: _ZN5doris6Status8RpcErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 474 | 77 | static Status name(std::string_view msg, Args&&... args) { \ | 475 | 77 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 476 | 77 | } |
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_ |
477 | | |
478 | | // default have no stacktrace. could enable manually. |
479 | | #define ERROR_CTOR_NOSTACK(name, code) \ |
480 | | template <bool stacktrace = false, typename... Args> \ |
481 | 8.10M | static Status name(std::string_view msg, Args&&... args) { \ |
482 | 8.10M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
483 | 8.10M | } _ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 11.0k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 11.0k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 11.0k | } |
_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 17.1k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 17.1k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 17.1k | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 574k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 574k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 574k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 350 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 350 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 350 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _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 | } |
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 6.07M | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 6.07M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 6.07M | } |
_ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ 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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 481 | 147k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 147k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 147k | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__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: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 22 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 22 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 22 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _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_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 481 | 1.43k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 1.43k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 1.43k | } |
_ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 481 | 77 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 77 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 77 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 25 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 25 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 25 | } |
_ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 302 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 302 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 302 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 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 | } |
_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 86 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 86 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 86 | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ 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 | } |
_ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 481 | 1.01M | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 1.01M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 1.01M | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_26TPartialUpdateNewRowPolicy4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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: _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status11CgroupErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 128k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 128k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 128k | } |
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 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_ _ZN5doris6Status15InvalidJsonPathILb0EJRKNSt7__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 | } |
_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_ _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_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: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 4.50k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 4.50k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 4.50k | } |
_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: _ZN5doris6Status15InvalidArgumentILb0EJjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRaEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJlEEES0_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: _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.6k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 11.6k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 11.6k | } |
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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJimEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_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 | } |
_ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__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: _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_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: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_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: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 481 | 333 | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 333 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 333 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_ Line | Count | Source | 481 | 1.08k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 1.08k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 1.08k | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ 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 | } |
_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: _ZN5doris6Status15InvalidArgumentILb0EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ 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 | } |
_ZN5doris6Status15InvalidJsonPathILb0EJEEES0_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: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRmRKmEEES0_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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmRmEEES0_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: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEERmS6_EEES0_S5_DpOT0_ 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 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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: _ZN5doris6Status15InvalidArgumentILb0EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKPKclEEES0_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 | } |
_ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_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: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 481 | 24.3k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 24.3k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 24.3k | } |
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRbS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 481 | 101k | static Status name(std::string_view msg, Args&&... args) { \ | 482 | 101k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 483 | 101k | } |
_ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_ 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 | } |
|
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 | 187M | bool is() const { |
519 | 187M | return code == _code; |
520 | 187M | } _ZNK5doris6Status2isILi30EEEbv Line | Count | Source | 518 | 110M | bool is() const { | 519 | 110M | return code == _code; | 520 | 110M | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv _ZNK5doris6Status2isILin3115EEEbv Line | Count | Source | 518 | 14 | bool is() const { | 519 | 14 | return code == _code; | 520 | 14 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv _ZNK5doris6Status2isILi31EEEbv Line | Count | Source | 518 | 48.7M | bool is() const { | 519 | 48.7M | return code == _code; | 520 | 48.7M | } |
_ZNK5doris6Status2isILi35EEEbv Line | Count | Source | 518 | 6 | bool is() const { | 519 | 6 | return code == _code; | 520 | 6 | } |
_ZNK5doris6Status2isILin7000EEEbv Line | Count | Source | 518 | 6.30M | bool is() const { | 519 | 6.30M | return code == _code; | 520 | 6.30M | } |
_ZNK5doris6Status2isILin7001EEEbv Line | Count | Source | 518 | 3.15M | bool is() const { | 519 | 3.15M | return code == _code; | 520 | 3.15M | } |
_ZNK5doris6Status2isILi5EEEbv Line | Count | Source | 518 | 336k | bool is() const { | 519 | 336k | return code == _code; | 520 | 336k | } |
_ZNK5doris6Status2isILi34EEEbv Line | Count | Source | 518 | 1 | bool is() const { | 519 | 1 | return code == _code; | 520 | 1 | } |
_ZNK5doris6Status2isILin406EEEbv Line | Count | Source | 518 | 3.71k | bool is() const { | 519 | 3.71k | return code == _code; | 520 | 3.71k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv _ZNK5doris6Status2isILi6EEEbv Line | Count | Source | 518 | 7 | bool is() const { | 519 | 7 | return code == _code; | 520 | 7 | } |
_ZNK5doris6Status2isILin908EEEbv Line | Count | Source | 518 | 918 | bool is() const { | 519 | 918 | return code == _code; | 520 | 918 | } |
_ZNK5doris6Status2isILin3002EEEbv Line | Count | Source | 518 | 8.51k | bool is() const { | 519 | 8.51k | return code == _code; | 520 | 8.51k | } |
_ZNK5doris6Status2isILin7002EEEbv Line | Count | Source | 518 | 9.44M | bool is() const { | 519 | 9.44M | return code == _code; | 520 | 9.44M | } |
_ZNK5doris6Status2isILin2000EEEbv Line | Count | Source | 518 | 480k | bool is() const { | 519 | 480k | return code == _code; | 520 | 480k | } |
_ZNK5doris6Status2isILi32EEEbv Line | Count | Source | 518 | 6.33M | bool is() const { | 519 | 6.33M | return code == _code; | 520 | 6.33M | } |
_ZNK5doris6Status2isILin6004EEEbv Line | Count | Source | 518 | 528 | bool is() const { | 519 | 528 | return code == _code; | 520 | 528 | } |
_ZNK5doris6Status2isILi39EEEbv Line | Count | Source | 518 | 300k | bool is() const { | 519 | 300k | return code == _code; | 520 | 300k | } |
_ZNK5doris6Status2isILin2010EEEbv Line | Count | Source | 518 | 265k | bool is() const { | 519 | 265k | return code == _code; | 520 | 265k | } |
_ZNK5doris6Status2isILin808EEEbv Line | Count | Source | 518 | 232k | bool is() const { | 519 | 232k | return code == _code; | 520 | 232k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv _ZNK5doris6Status2isILin6003EEEbv Line | Count | Source | 518 | 17 | bool is() const { | 519 | 17 | return code == _code; | 520 | 17 | } |
_ZNK5doris6Status2isILi14EEEbv Line | Count | Source | 518 | 629 | bool is() const { | 519 | 629 | return code == _code; | 520 | 629 | } |
_ZNK5doris6Status2isILi46EEEbv Line | Count | Source | 518 | 1.96M | bool is() const { | 519 | 1.96M | return code == _code; | 520 | 1.96M | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv _ZNK5doris6Status2isILi11EEEbv Line | Count | Source | 518 | 39.4k | bool is() const { | 519 | 39.4k | return code == _code; | 520 | 39.4k | } |
_ZNK5doris6Status2isILin257EEEbv Line | Count | Source | 518 | 17.6k | bool is() const { | 519 | 17.6k | return code == _code; | 520 | 17.6k | } |
_ZNK5doris6Status2isILin258EEEbv Line | Count | Source | 518 | 7.15k | bool is() const { | 519 | 7.15k | return code == _code; | 520 | 7.15k | } |
_ZNK5doris6Status2isILi42EEEbv Line | Count | Source | 518 | 864 | bool is() const { | 519 | 864 | return code == _code; | 520 | 864 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv _ZNK5doris6Status2isILin259EEEbv Line | Count | Source | 518 | 12.8k | bool is() const { | 519 | 12.8k | return code == _code; | 520 | 12.8k | } |
_ZNK5doris6Status2isILi73EEEbv Line | Count | Source | 518 | 78 | bool is() const { | 519 | 78 | return code == _code; | 520 | 78 | } |
_ZNK5doris6Status2isILi8EEEbv Line | Count | Source | 518 | 20.0k | bool is() const { | 519 | 20.0k | return code == _code; | 520 | 20.0k | } |
_ZNK5doris6Status2isILi37EEEbv Line | Count | Source | 518 | 20.0k | bool is() const { | 519 | 20.0k | return code == _code; | 520 | 20.0k | } |
_ZNK5doris6Status2isILi9EEEbv Line | Count | Source | 518 | 20.0k | bool is() const { | 519 | 20.0k | return code == _code; | 520 | 20.0k | } |
_ZNK5doris6Status2isILin7311EEEbv Line | Count | Source | 518 | 144k | bool is() const { | 519 | 144k | return code == _code; | 520 | 144k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin215EEEbv |
521 | | |
522 | 0 | void set_code(int code) { _code = code; } |
523 | | |
524 | 4.21G | 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 | 999k | 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 | 250M | 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 | 35.6k | bool operator==(const Status& st) const { return _code == st._code; } |
564 | | |
565 | | // Used like if ASSERT_NE(res, Status::OK()) |
566 | 3.05M | bool operator!=(const Status& st) const { return _code != st._code; } |
567 | | |
568 | | friend std::ostream& operator<<(std::ostream& ostr, const Status& status); |
569 | | |
570 | 15.7M | 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 | 14.7M | std::string code_as_string() const { |
585 | 14.7M | return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code)) |
586 | 14.7M | : fmt::format("E{}", (int16_t)_code); |
587 | 14.7M | } |
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 | 9.23M | AtomicStatus() : error_st_(Status::OK()) {} |
599 | | |
600 | 130M | bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; } |
601 | | |
602 | 426k | bool update(const Status& new_status) { |
603 | | // If new status is normal, or the old status is abnormal, then not need update |
604 | 426k | if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) { |
605 | 332k | return false; |
606 | 332k | } |
607 | 93.5k | std::lock_guard l(mutex_); |
608 | 93.5k | if (error_code_.load(std::memory_order_acquire) != 0) { |
609 | 19 | return false; |
610 | 19 | } |
611 | 93.5k | error_st_ = new_status; |
612 | 93.5k | error_code_.store(static_cast<int16_t>(new_status.code()), std::memory_order_release); |
613 | 93.5k | return true; |
614 | 93.5k | } |
615 | | |
616 | 6.48k | void reset() { |
617 | 6.48k | std::lock_guard l(mutex_); |
618 | 6.48k | error_st_ = Status::OK(); |
619 | 6.48k | error_code_ = 0; |
620 | 6.48k | } |
621 | | |
622 | | // will copy a new status object to avoid concurrency |
623 | | // This stauts could only be called when ok==false |
624 | 17.5M | Status status() const { |
625 | 17.5M | std::lock_guard l(mutex_); |
626 | 17.5M | return error_st_; |
627 | 17.5M | } |
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 | 14.7M | inline std::ostream& operator<<(std::ostream& ostr, const Status& status) { |
641 | 14.7M | ostr << '[' << status.code_as_string() << ']'; |
642 | 14.7M | ostr << status.msg(); |
643 | 14.7M | if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) { |
644 | 106k | ostr << '\n' << status._err_msg->_stack; |
645 | 106k | } |
646 | 14.7M | return ostr; |
647 | 14.7M | } |
648 | | |
649 | 14.5M | inline std::string Status::to_string() const { |
650 | 14.5M | std::stringstream ss; |
651 | 14.5M | ss << *this; |
652 | 14.5M | return ss.str(); |
653 | 14.5M | } |
654 | | |
655 | 0 | inline std::string Status::to_string_no_stack() const { |
656 | 0 | return fmt::format("[{}]{}", code_as_string(), msg()); |
657 | 0 | } |
658 | | |
659 | | // some generally useful macros |
660 | | #define RETURN_IF_ERROR(stmt) \ |
661 | 3.11G | do { \ |
662 | 3.11G | Status _status_ = (stmt); \ olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv Line | Count | Source | 662 | 10 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEENK3$_0clEv Line | Count | Source | 662 | 1.98M | Status _status_ = (stmt); \ |
segment.cpp:_ZZN5doris10segment_v27Segment18new_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_13IndexIteratorESt14default_deleteISC_EEENK3$_0clEv Line | Count | Source | 662 | 6.51k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 662 | 112k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 662 | 112k | 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 | 112k | 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 | 353k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15_init_containerERNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS4_EEmiENK3$_0clERNS3_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 662 | 685k | 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 | 93.1k | Status _status_ = (stmt); \ |
_ZZN5doris10segment_v225SparseColumnMergeIterator10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS5_EEPbENKUlPNS4_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_ Line | Count | Source | 662 | 701 | Status _status_ = (stmt); \ |
_ZZN5doris10segment_v225SparseColumnMergeIterator14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEENKUlPNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_ Line | Count | Source | 662 | 453 | 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 wal_writer.cpp:_ZZN5doris16determine_wal_fsEllRSt10shared_ptrINS_2io10FileSystemEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 74 | Status _status_ = (stmt); \ |
fragment_mgr.cpp:_ZZN5doris11FragmentMgr24_get_or_create_query_ctxERKNS_23TPipelineFragmentParamsERKNS_27TPipelineFragmentParamsListENS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENK3$_0clERN5phmap13flat_hash_mapINS_9TUniqueIdESt8weak_ptrIS9_ENSD_4HashISF_EENSD_7EqualToISF_EESaISt4pairIKSF_SH_EEEE Line | Count | Source | 662 | 15.4M | Status _status_ = (stmt); \ |
group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_0clEv Line | Count | Source | 662 | 222 | Status _status_ = (stmt); \ |
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_0clEvENKUlvE_clEv load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv Line | Count | Source | 662 | 262 | Status _status_ = (stmt); \ |
load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv Line | Count | Source | 662 | 16 | Status _status_ = (stmt); \ |
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv Line | Count | Source | 662 | 7 | Status _status_ = (stmt); \ |
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv Line | Count | Source | 662 | 272 | Status _status_ = (stmt); \ |
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 9 | Status _status_ = (stmt); \ |
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe10exec_plansEPNS_7ExecEnvERKSt6vectorINS_23TPipelineFragmentParamsESaIS5_EEENK3$_0clEPNS_12RuntimeStateEPNS_6StatusE Line | Count | Source | 662 | 83 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 1.95k | Status _status_ = (stmt); \ |
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor14pre_commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 55 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 1.64k | Status _status_ = (stmt); \ |
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_0clEPNS_15BaseDeltaWriterE Line | Count | Source | 662 | 130k | Status _status_ = (stmt); \ |
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv Line | Count | Source | 662 | 25 | Status _status_ = (stmt); \ |
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 rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader21read_doris_format_rowERKSt10shared_ptrINS_9IdFileMapEERKS1_INS_11FileMappingEElRSt6vectorINS_14SlotDescriptorESaISB_EERKNS_12TabletSchemaERNS_18RowStoreReadStructERNS_20OlapReaderStatisticsEPlSM_SM_SM_RSt13unordered_mapINS_11IteratorKeyENS_12IteratorItemENS_17HashOfIteratorKeyESt8equal_toISO_ESaISt4pairIKSO_SP_EEERNS_10vectorized5BlockEENK3$_3clEv Line | Count | Source | 662 | 46.4k | Status _status_ = (stmt); \ |
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 Line | Count | Source | 662 | 5.47k | Status _status_ = (stmt); \ |
http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 133 | Status _status_ = (stmt); \ |
stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 1.92k | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 128 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 128 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 536 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 13.4k | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev Line | Count | Source | 662 | 3 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE0_clB5cxx11Ev Line | Count | Source | 662 | 3 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 2 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 2 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 276 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 92 | Status _status_ = (stmt); \ |
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 554 | Status _status_ = (stmt); \ |
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 554 | Status _status_ = (stmt); \ |
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev Line | Count | Source | 662 | 606 | Status _status_ = (stmt); \ |
file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev Line | Count | Source | 662 | 606 | Status _status_ = (stmt); \ |
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); \ |
_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_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESI_EEDaSB_SC_SD_ Line | Count | Source | 662 | 16 | Status _status_ = (stmt); \ |
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 | 174 | 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_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_IbLb1EEEEDaSB_SC_ Line | Count | Source | 662 | 18 | 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 | 891 | 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_ _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 880 | Status _status_ = (stmt); \ |
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_ _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 880 | Status _status_ = (stmt); \ |
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_ _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_20EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 880 | Status _status_ = (stmt); \ |
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 | 495 | 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 | 1.15k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 1.76k | 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 | 499 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 2.96k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 2.10k | 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 | 612 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 910 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 2.20k | 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 | 499 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 4.78k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 2.59k | 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 | 612 | 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 | 2.38k | 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 | 2.06k | 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 | 2.71k | 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 | 2.29k | 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 | 2.32k | 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 | 1.94k | 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 | 2.72k | 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 | 2.29k | 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 | 2.36k | 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 | 2.04k | 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 | 2.71k | 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 | 2.29k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 32.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 22.7k | 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 | 10.0k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 40.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 25.8k | 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 | 11.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 21.3k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 44.3k | 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 | 13.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 23.4k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 51.7k | 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 | 16.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 388 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 8.98k | 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 | 3.18k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 11.5k | 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_ _ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.2k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 47.6k | 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 | 13.0k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 55.7k | 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 | 15.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.2k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 47.6k | 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 | 13.0k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_28EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 55.7k | 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 | 15.6k | 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 | 484 | 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 | 988 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 282 | 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 | 279 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 3.67k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 288 | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 988 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 282 | 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 | 279 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 2.20k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 288 | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 518 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 608 | 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 | 983 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 205k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 592 | 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 | 994 | 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 | 873 | 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 | 1.31k | 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 | 937 | 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 | 1.48k | 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 | 908 | 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 | 1.39k | 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 | 937 | 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 | 1.43k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 36.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.94k | 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 | 4.94k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 62.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 3.50k | 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 | 6.11k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 30.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 8.09k | 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 | 11.0k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 60.0M | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 9.51k | 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 | 13.4k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 1.16k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 9.91k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 160 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 2.59k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 4.65k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 11.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 238 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 3.32k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 18.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 26.4k | 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 | 12.1k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 31.6k | 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 | 14.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 16.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 29.6k | 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 | 11.2k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 17.7k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_29EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 35.4k | 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 | 13.6k | 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 | 491 | 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 | 1.82k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 502 | 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 | 499 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 2.26k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 563 | 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 | 612 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 1.82k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 502 | 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 | 499 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 2.26k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 563 | 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 | 612 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 1.89k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 530 | 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 | 562 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 14.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 563 | 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 | 612 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 1.36k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 1.06k | 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 | 663 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 57.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 1.18k | 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 | 776 | 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 | 1.61k | 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 | 2.54k | 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 | 3.73k | 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 | 3.02k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 37.2k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.34k | 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 | 4.84k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 46.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.97k | 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 | 5.97k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 44.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 3.32k | 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 | 6.33k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 240k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 4.18k | 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 | 7.81k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 7.50k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 3.78k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 118 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 1.94k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 15.5k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 4.52k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 177 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 2.46k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 31.1k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 8.41k | 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 | 10.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 1.45M | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 9.89k | 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 | 14.4k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 18.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 26.3k | 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 | 12.0k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 19.8k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEENS3_ILS4_30EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 31.5k | 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 | 14.5k | 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 | 572 | 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 | 279 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE3EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 1.87k | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 572 | 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 | 279 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE4EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 572 | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 614 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 139 | 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 | 342 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE5EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 572 | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 572 | 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 | 279 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE6EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 681 | 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 | 337 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 317 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 662 | 305 | 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 | 805 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_14DataTypeNumberILNS_13PrimitiveTypeE7EEENS0_15DataTypeDecimalILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ Line | Count | Source | 662 | 247 | 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 | 830 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 37.2k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.34k | 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 | 4.84k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 41.9k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE28EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.97k | 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 | 5.97k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 45.4k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.64k | 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 | 6.33k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 50.7k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE29EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 3.50k | 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 | 7.81k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 9.34k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 1.94k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 118 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 1.94k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 11.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 2.46k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESN_IbLb0EEEEDaSJ_SK_ Line | Count | Source | 662 | 177 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE20EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb1EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 2.46k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 45.6k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 3.23k | 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 | 6.42k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESO_EEDaSJ_SK_ Line | Count | Source | 662 | 57.3k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE30EEENS3_ILS4_35EEEE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_IbLb1EEEEDaSJ_SK_ Line | Count | Source | 662 | 4.03k | 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 | 7.96k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 31.1k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE0ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 8.19k | 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 | 11.1k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESN_EEDaSI_SJ_ Line | Count | Source | 662 | 34.4k | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized10CastToImplILNS0_12CastModeTypeE1ENS0_15DataTypeDecimalILNS_13PrimitiveTypeE35EEES5_E12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmPKhENKUlT_T0_E_clISt17integral_constantIbLb0EESM_IbLb1EEEEDaSI_SJ_ Line | Count | Source | 662 | 9.51k | 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 | 13.4k | Status _status_ = (stmt); \ |
spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv Line | Count | Source | 662 | 76 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_ Line | Count | Source | 662 | 21.9k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_ Line | Count | Source | 662 | 1.52k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_ Line | Count | Source | 662 | 1.20M | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_ Line | Count | Source | 662 | 926k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_ Line | Count | Source | 662 | 53.2k | Status _status_ = (stmt); \ |
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_ olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_ Line | Count | Source | 662 | 20 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_ Line | Count | Source | 662 | 4.44k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_ Line | Count | Source | 662 | 2.59M | Status _status_ = (stmt); \ |
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_ olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_ Line | Count | Source | 662 | 177 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_ Line | Count | Source | 662 | 54.9k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_ Line | Count | Source | 662 | 240 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_ Line | Count | Source | 662 | 22.3k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_ Line | Count | Source | 662 | 6.41k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_ Line | Count | Source | 662 | 13.7k | Status _status_ = (stmt); \ |
Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_ olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_ Line | Count | Source | 662 | 13.7k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_ Line | Count | Source | 662 | 16.9k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_ Line | Count | Source | 662 | 26.1k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_ Line | Count | Source | 662 | 28.4k | Status _status_ = (stmt); \ |
async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv Line | Count | Source | 662 | 180k | Status _status_ = (stmt); \ |
autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv Line | Count | Source | 662 | 234 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 208 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 19 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev Line | Count | Source | 662 | 466 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev Line | Count | Source | 662 | 466 | Status _status_ = (stmt); \ |
meta_scanner.cpp:_ZZN5doris10vectorized11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 7.08k | Status _status_ = (stmt); \ |
schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv Line | Count | Source | 662 | 70.0k | Status _status_ = (stmt); \ |
Unexecuted instantiation: schema_scanner.cpp:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv schema_scanner.cpp:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv Line | Count | Source | 662 | 11.0k | Status _status_ = (stmt); \ |
schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 24 | Status _status_ = (stmt); \ |
schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 13 | Status _status_ = (stmt); \ |
schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 8 | Status _status_ = (stmt); \ |
schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 403 | Status _status_ = (stmt); \ |
schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
schema_view_dependency_scanner.cpp:_ZZN5doris27SchemaViewDependencyScanner34_get_view_dependency_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 8 | Status _status_ = (stmt); \ |
schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 1.81k | Status _status_ = (stmt); \ |
schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 662 | 603 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 22 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 42 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 50 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 14 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
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_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
_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 | 26 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 100 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 20 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 8 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 58 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
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_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Line | Count | Source | 662 | 14 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ Line | Count | Source | 662 | 6 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ Line | Count | Source | 662 | 2 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_ Line | Count | Source | 662 | 24 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 110 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 170 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 8 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 128 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 98 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 24 | Status _status_ = (stmt); \ |
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_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 4 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ Line | Count | Source | 662 | 16 | Status _status_ = (stmt); \ |
_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 | 66 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 294 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 112 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 12 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 98 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 74 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 24 | Status _status_ = (stmt); \ |
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_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 20 | Status _status_ = (stmt); \ |
_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_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Line | Count | Source | 662 | 10 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ Line | Count | Source | 662 | 30 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ Line | Count | Source | 662 | 2 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_ Line | Count | Source | 662 | 62 | Status _status_ = (stmt); \ |
task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv Line | Count | Source | 662 | 3.44k | Status _status_ = (stmt); \ |
Unexecuted instantiation: cloud_meta_mgr.cpp:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESF_ cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv Line | Count | Source | 662 | 1 | Status _status_ = (stmt); \ |
cloud_tablet.cpp:_ZZN5doris11CloudTablet31capture_rs_readers_prefer_cacheERKNS_7VersionEPSt6vectorINS_12RowSetSplitsESaIS5_EEENK3$_0clEll Line | Count | Source | 662 | 163 | Status _status_ = (stmt); \ |
cloud_tablet.cpp:_ZZN5doris11CloudTablet43capture_rs_readers_with_freshness_toleranceERKNS_7VersionEPSt6vectorINS_12RowSetSplitsESaIS5_EElENK3$_0clEll Line | Count | Source | 662 | 85 | Status _status_ = (stmt); \ |
cloud_tablet.cpp:_ZZN5doris11CloudTablet43capture_rs_readers_with_freshness_toleranceERKNS_7VersionEPSt6vectorINS_12RowSetSplitsESaIS5_EElENK3$_1clEll Line | Count | Source | 662 | 137 | Status _status_ = (stmt); \ |
|
663 | 3.11G | if (UNLIKELY(!_status_.ok())) { \ |
664 | 1.32M | return _status_; \ |
665 | 1.32M | } \ |
666 | 3.11G | } while (false) |
667 | | |
668 | | #define PROPAGATE_FALSE(stmt) \ |
669 | 5.96M | do { \ |
670 | 5.96M | if (UNLIKELY(!static_cast<bool>(stmt))) { \ |
671 | 66.7k | return false; \ |
672 | 66.7k | } \ |
673 | 5.96M | } while (false) |
674 | | |
675 | | #define THROW_IF_ERROR(stmt) \ |
676 | 25.7M | do { \ |
677 | 25.7M | Status _status_ = (stmt); \ |
678 | 25.7M | if (UNLIKELY(!_status_.ok())) { \ |
679 | 3 | throw Exception(_status_); \ |
680 | 3 | } \ |
681 | 25.7M | } while (false) |
682 | | |
683 | | #define RETURN_IF_STATUS_ERROR(status, stmt) \ |
684 | 649k | do { \ |
685 | 649k | status = (stmt); \ |
686 | 649k | if (UNLIKELY(!status.ok())) { \ |
687 | 0 | return; \ |
688 | 0 | } \ |
689 | 649k | } while (false) |
690 | | |
691 | | #define EXIT_IF_ERROR(stmt) \ |
692 | 7 | do { \ |
693 | 7 | Status _status_ = (stmt); \ |
694 | 7 | if (UNLIKELY(!_status_.ok())) { \ |
695 | 0 | LOG(ERROR) << _status_; \ |
696 | 0 | exit(1); \ |
697 | 0 | } \ |
698 | 7 | } while (false) |
699 | | |
700 | | #define RETURN_FALSE_IF_ERROR(stmt) \ |
701 | 8.54M | do { \ |
702 | 8.54M | Status status = (stmt); \ |
703 | 8.54M | if (UNLIKELY(!status.ok())) { \ |
704 | 1 | return false; \ |
705 | 1 | } \ |
706 | 8.54M | } 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 | 481k | do { \ |
711 | 481k | Status _s = (to_call); \ |
712 | 481k | if (UNLIKELY(!_s.ok())) { \ |
713 | 37 | LOG(WARNING) << (warning_prefix) << ": " << _s; \ |
714 | 37 | } \ |
715 | 481k | } while (false); |
716 | | |
717 | | #define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix) \ |
718 | 6.33M | do { \ |
719 | 6.33M | Status _s = (stmt); \ |
720 | 6.33M | if (UNLIKELY(!_s.ok())) { \ |
721 | 0 | LOG(WARNING) << (warning_prefix) << ", error: " << _s; \ |
722 | 0 | return _s; \ |
723 | 0 | } \ |
724 | 6.33M | } 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 | 3.51M | do { \ |
733 | 3.51M | Status _status_ = (stmt); \ |
734 | 3.51M | if (UNLIKELY(!_status_.ok())) { \ |
735 | 24 | return unexpected(std::move(_status_)); \ |
736 | 24 | } \ |
737 | 3.51M | } while (false) |
738 | | |
739 | | #define DORIS_TRY(stmt) \ |
740 | 98.8M | ({ \ |
741 | 98.8M | auto&& res = (stmt); \ scanner_context.cpp:_ZZN5doris10vectorized14ScannerContext4initEvENK3$_0clEv Line | Count | Source | 741 | 4.80M | auto&& res = (stmt); \ |
_ZZN5doris10vectorized35TaskExecutorSimplifiedScanScheduler16submit_scan_taskENS0_18SimplifiedScanTaskERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEENKUlvE_clEv Line | Count | Source | 741 | 2.96k | auto&& res = (stmt); \ |
|
742 | 98.8M | using T = std::decay_t<decltype(res)>; \ |
743 | 98.8M | if (!res.has_value()) [[unlikely]] { \ |
744 | 366k | return std::forward<T>(res).error(); \ |
745 | 366k | } \ |
746 | 98.8M | std::forward<T>(res).value(); \ |
747 | 98.5M | }); |
748 | | |
749 | | #define TEST_TRY(stmt) \ |
750 | | ({ \ |
751 | | auto&& res = (stmt); \ |
752 | | using T = std::decay_t<decltype(res)>; \ |
753 | | if (!res.has_value()) [[unlikely]] { \ |
754 | | ASSERT_TRUE(res.has_value()) << "Expected success, but got error: " << res.error(); \ |
755 | | } \ |
756 | | std::forward<T>(res).value(); \ |
757 | | }) |
758 | | |
759 | | } // namespace doris |
760 | | |
761 | | // specify formatter for Status |
762 | | template <> |
763 | | struct fmt::formatter<doris::Status> { |
764 | | template <typename ParseContext> |
765 | 131 | constexpr auto parse(ParseContext& ctx) { |
766 | 131 | return ctx.begin(); |
767 | 131 | } |
768 | | |
769 | | template <typename FormatContext> |
770 | 131 | auto format(doris::Status const& status, FormatContext& ctx) { |
771 | 131 | return fmt::format_to(ctx.out(), "{}", status.to_string()); |
772 | 131 | } |
773 | | }; |