/root/doris/be/src/common/status.h
Line | Count | Source (jump to first uncovered line) |
1 | | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. |
2 | | // Use of this source code is governed by a BSD-style license that can be |
3 | | // found in the LICENSE file. See the AUTHORS file for names of contributors. |
4 | | |
5 | | #pragma once |
6 | | |
7 | | #include <fmt/format.h> |
8 | | #include <gen_cpp/Status_types.h> // for TStatus |
9 | | #include <gen_cpp/types.pb.h> |
10 | | #include <glog/logging.h> |
11 | | |
12 | | #include <cstdint> |
13 | | #include <iostream> |
14 | | #include <memory> |
15 | | #include <string> |
16 | | #include <string_view> |
17 | | #include <utility> |
18 | | |
19 | | #include "common/compiler_util.h" // IWYU pragma: keep |
20 | | #include "common/config.h" |
21 | | #include "common/expected.h" |
22 | | #include "util/stack_util.h" |
23 | | |
24 | | namespace doris { |
25 | | |
26 | | namespace io { |
27 | | struct ObjectStorageStatus; |
28 | | } |
29 | | |
30 | | class Status; |
31 | | |
32 | | extern io::ObjectStorageStatus convert_to_obj_response(Status st); |
33 | | |
34 | | class PStatus; |
35 | | |
36 | | namespace ErrorCode { |
37 | | |
38 | | // E thrift_error_name, print_stacktrace |
39 | | #define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError) \ |
40 | 10 | TStatusError(PUBLISH_TIMEOUT, false); \ |
41 | 10 | TStatusError(MEM_ALLOC_FAILED, true); \ |
42 | 10 | TStatusError(BUFFER_ALLOCATION_FAILED, true); \ |
43 | 10 | TStatusError(INVALID_ARGUMENT, false); \ |
44 | 10 | TStatusError(INVALID_JSON_PATH, false); \ |
45 | 10 | TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true); \ |
46 | 10 | TStatusError(CORRUPTION, true); \ |
47 | 10 | TStatusError(IO_ERROR, true); \ |
48 | 10 | TStatusError(NOT_FOUND, true); \ |
49 | 10 | TStatusError(ALREADY_EXIST, true); \ |
50 | 10 | TStatusError(DIRECTORY_NOT_EMPTY, true); \ |
51 | 10 | TStatusError(NOT_IMPLEMENTED_ERROR, false); \ |
52 | 10 | TStatusError(END_OF_FILE, false); \ |
53 | 10 | TStatusError(INTERNAL_ERROR, true); \ |
54 | 10 | TStatusError(RUNTIME_ERROR, true); \ |
55 | 10 | TStatusError(CANCELLED, false); \ |
56 | 10 | TStatusError(ANALYSIS_ERROR, false); \ |
57 | 10 | TStatusError(MEM_LIMIT_EXCEEDED, false); \ |
58 | 10 | TStatusError(THRIFT_RPC_ERROR, true); \ |
59 | 10 | TStatusError(TIMEOUT, true); \ |
60 | 10 | TStatusError(LIMIT_REACH, false); \ |
61 | 10 | TStatusError(TOO_MANY_TASKS, true); \ |
62 | 10 | TStatusError(UNINITIALIZED, false); \ |
63 | 10 | TStatusError(INCOMPLETE, false); \ |
64 | 10 | TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \ |
65 | 10 | TStatusError(ABORTED, false); \ |
66 | 10 | TStatusError(DATA_QUALITY_ERROR, false); \ |
67 | 10 | TStatusError(LABEL_ALREADY_EXISTS, true); \ |
68 | 10 | TStatusError(NOT_AUTHORIZED, true); \ |
69 | 10 | TStatusError(BINLOG_DISABLE, false); \ |
70 | 10 | TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false); \ |
71 | 10 | TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false); \ |
72 | 10 | TStatusError(BINLOG_NOT_FOUND_DB, false); \ |
73 | 10 | TStatusError(BINLOG_NOT_FOUND_TABLE, false); \ |
74 | 10 | TStatusError(NETWORK_ERROR, false); \ |
75 | 10 | TStatusError(ILLEGAL_STATE, false); \ |
76 | 10 | TStatusError(SNAPSHOT_NOT_EXIST, true); \ |
77 | 10 | TStatusError(HTTP_ERROR, true); \ |
78 | 10 | TStatusError(TABLET_MISSING, true); \ |
79 | 10 | TStatusError(NOT_MASTER, true); \ |
80 | 10 | TStatusError(OBTAIN_LOCK_FAILED, false); \ |
81 | 10 | TStatusError(SNAPSHOT_EXPIRED, false); \ |
82 | 10 | TStatusError(DELETE_BITMAP_LOCK_ERROR, false); |
83 | | // E error_name, error_code, print_stacktrace |
84 | | #define APPLY_FOR_OLAP_ERROR_CODES(E) \ |
85 | 10 | E(OK, 0, false); \ |
86 | 10 | E(CALL_SEQUENCE_ERROR, -202, true); \ |
87 | 10 | E(BUFFER_OVERFLOW, -204, true); \ |
88 | 10 | E(CONFIG_ERROR, -205, true); \ |
89 | 10 | E(INIT_FAILED, -206, true); \ |
90 | 10 | E(INVALID_SCHEMA, -207, true); \ |
91 | 10 | E(CHECKSUM_ERROR, -208, true); \ |
92 | 10 | E(SIGNATURE_ERROR, -209, true); \ |
93 | 10 | E(CATCH_EXCEPTION, -210, true); \ |
94 | 10 | E(PARSE_PROTOBUF_ERROR, -211, true); \ |
95 | 10 | E(SERIALIZE_PROTOBUF_ERROR, -212, true); \ |
96 | 10 | E(WRITE_PROTOBUF_ERROR, -213, true); \ |
97 | 10 | E(VERSION_NOT_EXIST, -214, false); \ |
98 | 10 | E(TABLE_NOT_FOUND, -215, true); \ |
99 | 10 | E(TRY_LOCK_FAILED, -216, false); \ |
100 | 10 | E(EXCEEDED_LIMIT, -217, false); \ |
101 | 10 | E(OUT_OF_BOUND, -218, false); \ |
102 | 10 | E(INVALID_ROOT_PATH, -222, true); \ |
103 | 10 | E(NO_AVAILABLE_ROOT_PATH, -223, true); \ |
104 | 10 | E(CHECK_LINES_ERROR, -224, true); \ |
105 | 10 | E(INVALID_CLUSTER_INFO, -225, true); \ |
106 | 10 | E(TRANSACTION_NOT_EXIST, -226, false); \ |
107 | 10 | E(DISK_FAILURE, -227, true); \ |
108 | 10 | E(TRANSACTION_ALREADY_COMMITTED, -228, false); \ |
109 | 10 | E(TRANSACTION_ALREADY_VISIBLE, -229, false); \ |
110 | 10 | E(VERSION_ALREADY_MERGED, -230, true); \ |
111 | 10 | E(LZO_DISABLED, -231, true); \ |
112 | 10 | E(DISK_REACH_CAPACITY_LIMIT, -232, true); \ |
113 | 10 | E(TOO_MANY_TRANSACTIONS, -233, false); \ |
114 | 10 | E(INVALID_SNAPSHOT_VERSION, -234, true); \ |
115 | 10 | E(TOO_MANY_VERSION, -235, false); \ |
116 | 10 | E(NOT_INITIALIZED, -236, true); \ |
117 | 10 | E(ALREADY_CANCELLED, -237, false); \ |
118 | 10 | E(TOO_MANY_SEGMENTS, -238, false); \ |
119 | 10 | E(ALREADY_CLOSED, -239, false); \ |
120 | 10 | E(SERVICE_UNAVAILABLE, -240, true); \ |
121 | 10 | E(NEED_SEND_AGAIN, -241, false); \ |
122 | 10 | E(OS_ERROR, -242, true); \ |
123 | 10 | E(DIR_NOT_EXIST, -243, true); \ |
124 | 10 | E(CREATE_FILE_ERROR, -245, true); \ |
125 | 10 | E(STL_ERROR, -246, true); \ |
126 | 10 | E(MUTEX_ERROR, -247, true); \ |
127 | 10 | E(PTHREAD_ERROR, -248, true); \ |
128 | 10 | E(UB_FUNC_ERROR, -250, true); \ |
129 | 10 | E(COMPRESS_ERROR, -251, true); \ |
130 | 10 | E(DECOMPRESS_ERROR, -252, true); \ |
131 | 10 | E(FILE_ALREADY_EXIST, -253, true); \ |
132 | 10 | E(BAD_CAST, -254, true); \ |
133 | 10 | E(ARITHMETIC_OVERFLOW_ERRROR, -255, false); \ |
134 | 10 | E(PERMISSION_DENIED, -256, false); \ |
135 | 10 | E(CE_CMD_PARAMS_ERROR, -300, true); \ |
136 | 10 | E(CE_BUFFER_TOO_SMALL, -301, true); \ |
137 | 10 | E(CE_CMD_NOT_VALID, -302, true); \ |
138 | 10 | E(CE_LOAD_TABLE_ERROR, -303, true); \ |
139 | 10 | E(CE_NOT_FINISHED, -304, true); \ |
140 | 10 | E(CE_TABLET_ID_EXIST, -305, true); \ |
141 | 10 | E(TABLE_VERSION_DUPLICATE_ERROR, -400, true); \ |
142 | 10 | E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true); \ |
143 | 10 | E(TABLE_INDEX_VALIDATE_ERROR, -402, true); \ |
144 | 10 | E(TABLE_INDEX_FIND_ERROR, -403, true); \ |
145 | 10 | E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true); \ |
146 | 10 | E(TABLE_CREATE_META_ERROR, -405, true); \ |
147 | 10 | E(TABLE_ALREADY_DELETED_ERROR, -406, false); \ |
148 | 10 | E(ENGINE_INSERT_EXISTS_TABLE, -500, true); \ |
149 | 10 | E(ENGINE_DROP_NOEXISTS_TABLE, -501, true); \ |
150 | 10 | E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true); \ |
151 | 10 | E(TABLE_INSERT_DUPLICATION_ERROR, -503, true); \ |
152 | 10 | E(DELETE_VERSION_ERROR, -504, true); \ |
153 | 10 | E(GC_SCAN_PATH_ERROR, -505, true); \ |
154 | 10 | E(ENGINE_INSERT_OLD_TABLET, -506, true); \ |
155 | 10 | E(FETCH_OTHER_ERROR, -600, true); \ |
156 | 10 | E(FETCH_TABLE_NOT_EXIST, -601, true); \ |
157 | 10 | E(FETCH_VERSION_ERROR, -602, true); \ |
158 | 10 | E(FETCH_SCHEMA_ERROR, -603, true); \ |
159 | 10 | E(FETCH_COMPRESSION_ERROR, -604, true); \ |
160 | 10 | E(FETCH_CONTEXT_NOT_EXIST, -605, true); \ |
161 | 10 | E(FETCH_GET_READER_PARAMS_ERR, -606, true); \ |
162 | 10 | E(FETCH_SAVE_SESSION_ERR, -607, true); \ |
163 | 10 | E(FETCH_MEMORY_EXCEEDED, -608, true); \ |
164 | 10 | E(READER_IS_UNINITIALIZED, -700, true); \ |
165 | 10 | E(READER_GET_ITERATOR_ERROR, -701, true); \ |
166 | 10 | E(CAPTURE_ROWSET_READER_ERROR, -702, true); \ |
167 | 10 | E(READER_READING_ERROR, -703, true); \ |
168 | 10 | E(READER_INITIALIZE_ERROR, -704, true); \ |
169 | 10 | E(BE_VERSION_NOT_MATCH, -800, true); \ |
170 | 10 | E(BE_REPLACE_VERSIONS_ERROR, -801, true); \ |
171 | 10 | E(BE_MERGE_ERROR, -802, true); \ |
172 | 10 | E(CAPTURE_ROWSET_ERROR, -804, true); \ |
173 | 10 | E(BE_SAVE_HEADER_ERROR, -805, true); \ |
174 | 10 | E(BE_INIT_OLAP_DATA, -806, true); \ |
175 | 10 | E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true); \ |
176 | 10 | E(BE_NO_SUITABLE_VERSION, -808, false); \ |
177 | 10 | E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true); \ |
178 | 10 | E(BE_ERROR_DELETE_ACTION, -811, true); \ |
179 | 10 | E(BE_SEGMENTS_OVERLAPPING, -812, true); \ |
180 | 10 | E(PUSH_INIT_ERROR, -900, true); \ |
181 | 10 | E(PUSH_VERSION_INCORRECT, -902, true); \ |
182 | 10 | E(PUSH_SCHEMA_MISMATCH, -903, true); \ |
183 | 10 | E(PUSH_CHECKSUM_ERROR, -904, true); \ |
184 | 10 | E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true); \ |
185 | 10 | E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true); \ |
186 | 10 | E(PUSH_BUILD_DELTA_ERROR, -907, true); \ |
187 | 10 | E(PUSH_VERSION_ALREADY_EXIST, -908, false); \ |
188 | 10 | E(PUSH_TABLE_NOT_EXIST, -909, true); \ |
189 | 10 | E(PUSH_INPUT_DATA_ERROR, -910, true); \ |
190 | 10 | E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false); \ |
191 | 10 | E(PUSH_BATCH_PROCESS_REMOVED, -912, true); \ |
192 | 10 | E(PUSH_COMMIT_ROWSET, -913, true); \ |
193 | 10 | E(PUSH_ROWSET_NOT_FOUND, -914, true); \ |
194 | 10 | E(INDEX_LOAD_ERROR, -1000, true); \ |
195 | 10 | E(INDEX_CHECKSUM_ERROR, -1002, true); \ |
196 | 10 | E(INDEX_DELTA_PRUNING, -1003, true); \ |
197 | 10 | E(DATA_ROW_BLOCK_ERROR, -1100, true); \ |
198 | 10 | E(DATA_FILE_TYPE_ERROR, -1101, true); \ |
199 | 10 | E(WRITER_INDEX_WRITE_ERROR, -1200, true); \ |
200 | 10 | E(WRITER_DATA_WRITE_ERROR, -1201, true); \ |
201 | 10 | E(WRITER_ROW_BLOCK_ERROR, -1202, true); \ |
202 | 10 | E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true); \ |
203 | 10 | E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true); \ |
204 | 10 | E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true); \ |
205 | 10 | E(HEADER_ADD_VERSION, -1400, true); \ |
206 | 10 | E(HEADER_DELETE_VERSION, -1401, true); \ |
207 | 10 | E(HEADER_ADD_PENDING_DELTA, -1402, true); \ |
208 | 10 | E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true); \ |
209 | 10 | E(HEADER_INVALID_FLAG, -1404, true); \ |
210 | 10 | E(HEADER_LOAD_INVALID_KEY, -1408, true); \ |
211 | 10 | E(HEADER_LOAD_JSON_HEADER, -1410, true); \ |
212 | 10 | E(HEADER_INIT_FAILED, -1411, true); \ |
213 | 10 | E(HEADER_PB_PARSE_FAILED, -1412, true); \ |
214 | 10 | E(HEADER_HAS_PENDING_DATA, -1413, true); \ |
215 | 10 | E(SCHEMA_SCHEMA_INVALID, -1500, true); \ |
216 | 10 | E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true); \ |
217 | 10 | E(ALTER_MULTI_TABLE_ERR, -1600, true); \ |
218 | 10 | E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true); \ |
219 | 10 | E(ALTER_STATUS_ERR, -1602, true); \ |
220 | 10 | E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true); \ |
221 | 10 | E(SCHEMA_CHANGE_INFO_INVALID, -1604, true); \ |
222 | 10 | E(QUERY_SPLIT_KEY_ERR, -1605, true); \ |
223 | 10 | E(DATA_QUALITY_ERR, -1606, false); \ |
224 | 10 | E(COLUMN_DATA_LOAD_BLOCK, -1700, true); \ |
225 | 10 | E(COLUMN_DATA_RECORD_INDEX, -1701, true); \ |
226 | 10 | E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true); \ |
227 | 10 | E(COLUMN_DATA_READ_VAR_INT, -1703, true); \ |
228 | 10 | E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true); \ |
229 | 10 | E(COLUMN_READ_STREAM, -1706, true); \ |
230 | 10 | E(COLUMN_STREAM_NOT_EXIST, -1716, true); \ |
231 | 10 | E(COLUMN_VALUE_NULL, -1717, true); \ |
232 | 10 | E(COLUMN_SEEK_ERROR, -1719, true); \ |
233 | 10 | E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true); \ |
234 | 10 | E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true); \ |
235 | 10 | E(DELETE_INVALID_CONDITION, -1900, true); \ |
236 | 10 | E(DELETE_UPDATE_HEADER_FAILED, -1901, true); \ |
237 | 10 | E(DELETE_SAVE_HEADER_FAILED, -1902, true); \ |
238 | 10 | E(DELETE_INVALID_PARAMETERS, -1903, true); \ |
239 | 10 | E(DELETE_INVALID_VERSION, -1904, true); \ |
240 | 10 | E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false); \ |
241 | 10 | E(CUMULATIVE_REPEAT_INIT, -2001, true); \ |
242 | 10 | E(CUMULATIVE_INVALID_PARAMETERS, -2002, true); \ |
243 | 10 | E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true); \ |
244 | 10 | E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \ |
245 | 10 | E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true); \ |
246 | 10 | E(CUMULATIVE_MISS_VERSION, -2006, true); \ |
247 | 10 | E(FULL_NO_SUITABLE_VERSION, -2008, false); \ |
248 | 10 | E(FULL_MISS_VERSION, -2009, true); \ |
249 | 10 | E(CUMULATIVE_MEET_DELETE_VERSION, -2010, false); \ |
250 | 10 | E(META_INVALID_ARGUMENT, -3000, true); \ |
251 | 10 | E(META_OPEN_DB_ERROR, -3001, true); \ |
252 | 10 | E(META_KEY_NOT_FOUND, -3002, false); \ |
253 | 10 | E(META_GET_ERROR, -3003, true); \ |
254 | 10 | E(META_PUT_ERROR, -3004, true); \ |
255 | 10 | E(META_ITERATOR_ERROR, -3005, true); \ |
256 | 10 | E(META_DELETE_ERROR, -3006, true); \ |
257 | 10 | E(META_ALREADY_EXIST, -3007, true); \ |
258 | 10 | E(ROWSET_WRITER_INIT, -3100, true); \ |
259 | 10 | E(ROWSET_SAVE_FAILED, -3101, true); \ |
260 | 10 | E(ROWSET_GENERATE_ID_FAILED, -3102, true); \ |
261 | 10 | E(ROWSET_DELETE_FILE_FAILED, -3103, true); \ |
262 | 10 | E(ROWSET_BUILDER_INIT, -3104, true); \ |
263 | 10 | E(ROWSET_TYPE_NOT_FOUND, -3105, true); \ |
264 | 10 | E(ROWSET_ALREADY_EXIST, -3106, true); \ |
265 | 10 | E(ROWSET_CREATE_READER, -3107, true); \ |
266 | 10 | E(ROWSET_INVALID, -3108, true); \ |
267 | 10 | E(ROWSET_READER_INIT, -3110, true); \ |
268 | 10 | E(ROWSET_INVALID_STATE_TRANSITION, -3112, true); \ |
269 | 10 | E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true); \ |
270 | 10 | E(ROWSET_ADD_MIGRATION_V2, -3114, true); \ |
271 | 10 | E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false); \ |
272 | 10 | E(ROWSET_RENAME_FILE_FAILED, -3116, false); \ |
273 | 10 | E(SEGCOMPACTION_INIT_READER, -3117, false); \ |
274 | 10 | E(SEGCOMPACTION_INIT_WRITER, -3118, false); \ |
275 | 10 | E(SEGCOMPACTION_FAILED, -3119, false); \ |
276 | 10 | E(PIP_WAIT_FOR_RF, -3120, false); \ |
277 | 10 | E(PIP_WAIT_FOR_SC, -3121, false); \ |
278 | 10 | E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true); \ |
279 | 10 | E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true); \ |
280 | 10 | E(INVERTED_INDEX_INVALID_PARAMETERS, -6000, false); \ |
281 | 10 | E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false); \ |
282 | 10 | E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false); \ |
283 | 10 | E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false); \ |
284 | 10 | E(INVERTED_INDEX_BYPASS, -6004, false); \ |
285 | 10 | E(INVERTED_INDEX_NO_TERMS, -6005, false); \ |
286 | 10 | E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true); \ |
287 | 10 | E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false); \ |
288 | 10 | E(INVERTED_INDEX_BUILD_WAITTING, -6008, false); \ |
289 | 10 | E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false); \ |
290 | 10 | E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false); \ |
291 | 10 | E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false); \ |
292 | 10 | E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false); \ |
293 | 10 | E(KEY_NOT_FOUND, -7000, false); \ |
294 | 10 | E(KEY_ALREADY_EXISTS, -7001, false); \ |
295 | 10 | E(ENTRY_NOT_FOUND, -7002, false); \ |
296 | 10 | E(NEW_ROWS_IN_PARTIAL_UPDATE, -7003, false); \ |
297 | 10 | E(INVALID_TABLET_STATE, -7211, false); \ |
298 | 10 | E(ROWSETS_EXPIRED, -7311, false); \ |
299 | 10 | E(CGROUP_ERROR, -7411, false); |
300 | | |
301 | | // Define constexpr int error_code_name = error_code_value |
302 | | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE; |
303 | | APPLY_FOR_OLAP_ERROR_CODES(M) |
304 | | #undef M |
305 | | |
306 | | #define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name; |
307 | | APPLY_FOR_THRIFT_ERROR_CODES(MM) |
308 | | #undef MM |
309 | | |
310 | | constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536; |
311 | | struct ErrorCodeState { |
312 | | int16_t error_code = 0; |
313 | | bool stacktrace = true; |
314 | | std::string description; |
315 | | size_t count = 0; // Used for count the number of error happens |
316 | | std::mutex mutex; // lock guard for count state |
317 | | }; |
318 | | extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM]; |
319 | | |
320 | | class ErrorCodeInitializer { |
321 | | public: |
322 | 10 | ErrorCodeInitializer(int temp) : signal_value(temp) { |
323 | 655k | for (auto& error_state : error_states) { |
324 | 655k | error_state.error_code = 0; |
325 | 655k | } |
326 | 10 | #define M(NAME, ENABLESTACKTRACE) \ |
327 | 430 | error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \ |
328 | 430 | error_states[TStatusCode::NAME].description = #NAME; \ |
329 | 430 | error_states[TStatusCode::NAME].error_code = TStatusCode::NAME; |
330 | 430 | APPLY_FOR_THRIFT_ERROR_CODES(M) |
331 | 10 | #undef M |
332 | | // In status.h, if error code > 0, then it means it will be used in TStatusCode and will |
333 | | // also be used in FE. |
334 | | // Other error codes that with error code < 0, will only be used in BE. |
335 | | // We use abs(error code) as the index in error_states, so that these two kinds of error |
336 | | // codes MUST not have overlap. |
337 | | // Add an assert here to make sure the code in TStatusCode and other error code are not |
338 | | // overlapped. |
339 | 10 | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) \ |
340 | 2.15k | assert(error_states[abs(ERRORCODE)].error_code == 0); \ |
341 | 2.15k | error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \ |
342 | 2.15k | error_states[abs(ERRORCODE)].error_code = ERRORCODE; |
343 | 2.15k | APPLY_FOR_OLAP_ERROR_CODES(M) |
344 | 10 | #undef M |
345 | 10 | } |
346 | | |
347 | 10 | void check_init() const { |
348 | | //the signal value is 0, it means the global error states not inited, it's logical error |
349 | | // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time. |
350 | 10 | if (signal_value == 0) { |
351 | 0 | exit(-1); |
352 | 0 | } |
353 | 10 | } |
354 | | |
355 | | private: |
356 | | int signal_value = 0; |
357 | | }; |
358 | | |
359 | | extern ErrorCodeInitializer error_code_init; |
360 | | } // namespace ErrorCode |
361 | | |
362 | | class [[nodiscard]] Status { |
363 | | public: |
364 | 3.94G | Status() : _code(ErrorCode::OK), _err_msg(nullptr) {} |
365 | | |
366 | | // used to convert Exception to Status |
367 | 105k | Status(int code, std::string msg, std::string stack = "") : _code(code) { |
368 | 105k | _err_msg = std::make_unique<ErrMsg>(); |
369 | 105k | _err_msg->_msg = std::move(msg); |
370 | 105k | if (config::enable_stacktrace) { |
371 | 105k | _err_msg->_stack = std::move(stack); |
372 | 105k | } |
373 | 105k | } |
374 | | |
375 | | // copy c'tor makes copy of error detail so Status can be returned by value |
376 | 200M | Status(const Status& rhs) { *this = rhs; } |
377 | | |
378 | | // move c'tor |
379 | 43.9M | Status(Status&& rhs) noexcept = default; |
380 | | |
381 | | // same as copy c'tor |
382 | 200M | Status& operator=(const Status& rhs) { |
383 | 200M | _code = rhs._code; |
384 | 200M | if (rhs._err_msg) { |
385 | 1.09M | _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg); |
386 | 1.09M | } |
387 | 200M | return *this; |
388 | 200M | } |
389 | | |
390 | | // move assign |
391 | 112M | Status& operator=(Status&& rhs) noexcept { |
392 | 112M | _code = rhs._code; |
393 | 112M | if (rhs._err_msg) { |
394 | 1.91M | _err_msg = std::move(rhs._err_msg); |
395 | 1.91M | } |
396 | 112M | return *this; |
397 | 112M | } |
398 | | |
399 | | template <bool stacktrace = true> |
400 | 105k | Status static create(const TStatus& status) { |
401 | 105k | return Error<stacktrace>( |
402 | 105k | status.status_code, |
403 | 105k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); |
404 | 105k | } _ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE Line | Count | Source | 400 | 24.7k | Status static create(const TStatus& status) { | 401 | 24.7k | return Error<stacktrace>( | 402 | 24.7k | status.status_code, | 403 | 24.7k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 404 | 24.7k | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE Line | Count | Source | 400 | 81.1k | Status static create(const TStatus& status) { | 401 | 81.1k | return Error<stacktrace>( | 402 | 81.1k | status.status_code, | 403 | 81.1k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 404 | 81.1k | } |
|
405 | | |
406 | | template <bool stacktrace = true> |
407 | 3.07M | Status static create(const PStatus& pstatus) { |
408 | 3.07M | return Error<stacktrace>( |
409 | 3.07M | pstatus.status_code(), |
410 | 3.07M | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); |
411 | 3.07M | } _ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE Line | Count | Source | 407 | 3.07M | Status static create(const PStatus& pstatus) { | 408 | 3.07M | return Error<stacktrace>( | 409 | 3.07M | pstatus.status_code(), | 410 | 3.07M | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 411 | 3.07M | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE Line | Count | Source | 407 | 8 | Status static create(const PStatus& pstatus) { | 408 | 8 | return Error<stacktrace>( | 409 | 8 | pstatus.status_code(), | 410 | 8 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 411 | 8 | } |
|
412 | | |
413 | | template <int code, bool stacktrace = true, typename... Args> |
414 | 13.5M | Status static Error(std::string_view msg, Args&&... args) { |
415 | 13.5M | Status status; |
416 | 13.5M | status._code = code; |
417 | 13.5M | status._err_msg = std::make_unique<ErrMsg>(); |
418 | 13.5M | if constexpr (sizeof...(args) == 0) { |
419 | 2.81M | status._err_msg->_msg = msg; |
420 | 2.81M | } else { |
421 | 2.81M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
422 | 2.81M | } |
423 | 13.5M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
424 | 13.5M | config::enable_stacktrace) { |
425 | | // Delete the first one frame pointers, which are inside the status.h |
426 | 1.67k | status._err_msg->_stack = get_stack_trace(1); |
427 | 1.67k | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
428 | 1.67k | } |
429 | 13.5M | return status; |
430 | 13.5M | } _ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 57.0k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 57.0k | Status status; | 416 | 57.0k | status._code = code; | 417 | 57.0k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 57.0k | if constexpr (sizeof...(args) == 0) { | 419 | 56.9k | status._err_msg->_msg = msg; | 420 | 56.9k | } else { | 421 | 57.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 57.0k | } | 423 | 57.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 57.0k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 57.0k | return status; | 430 | 57.0k | } |
_ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 4 | status._err_msg->_stack = get_stack_trace(1); | 427 | 4 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 4 | } | 429 | 4 | return status; | 430 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 4.64k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4.64k | Status status; | 416 | 4.64k | status._code = code; | 417 | 4.64k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4.64k | if constexpr (sizeof...(args) == 0) { | 419 | 4.64k | status._err_msg->_msg = msg; | 420 | 4.64k | } else { | 421 | 4.64k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4.64k | } | 423 | 4.64k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4.64k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4.64k | return status; | 430 | 4.64k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1.04k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1.04k | Status status; | 416 | 1.04k | status._code = code; | 417 | 1.04k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1.04k | if constexpr (sizeof...(args) == 0) { | 419 | 1.04k | status._err_msg->_msg = msg; | 420 | 1.04k | } else { | 421 | 1.04k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1.04k | } | 423 | 1.04k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1.04k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 997 | status._err_msg->_stack = get_stack_trace(1); | 427 | 997 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 997 | } | 429 | 1.04k | return status; | 430 | 1.04k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 30 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 30 | Status status; | 416 | 30 | status._code = code; | 417 | 30 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 30 | if constexpr (sizeof...(args) == 0) { | 419 | 30 | status._err_msg->_msg = msg; | 420 | 30 | } else { | 421 | 30 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 30 | } | 423 | 30 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 30 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 30 | return status; | 430 | 30 | } |
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 16 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 16 | Status status; | 416 | 16 | status._code = code; | 417 | 16 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 16 | if constexpr (sizeof...(args) == 0) { | 419 | 16 | status._err_msg->_msg = msg; | 420 | 16 | } else { | 421 | 16 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 16 | } | 423 | 16 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 16 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 16 | return status; | 430 | 16 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 99.8k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 99.8k | Status status; | 416 | 99.8k | status._code = code; | 417 | 99.8k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 99.8k | if constexpr (sizeof...(args) == 0) { | 419 | 99.6k | status._err_msg->_msg = msg; | 420 | 99.6k | } else { | 421 | 99.8k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 99.8k | } | 423 | 99.8k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 99.8k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 99.8k | return status; | 430 | 99.8k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 871k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 871k | Status status; | 416 | 871k | status._code = code; | 417 | 871k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 871k | if constexpr (sizeof...(args) == 0) { | 419 | 871k | status._err_msg->_msg = msg; | 420 | 871k | } else { | 421 | 871k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 871k | } | 423 | 871k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 871k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 871k | return status; | 430 | 871k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 594 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 594 | Status status; | 416 | 594 | status._code = code; | 417 | 594 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 594 | if constexpr (sizeof...(args) == 0) { | 419 | 594 | status._err_msg->_msg = msg; | 420 | 594 | } else { | 421 | 594 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 594 | } | 423 | 594 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 594 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 594 | return status; | 430 | 594 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 64 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 64 | Status status; | 416 | 64 | status._code = code; | 417 | 64 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 64 | if constexpr (sizeof...(args) == 0) { | 419 | 64 | status._err_msg->_msg = msg; | 420 | 64 | } else { | 421 | 64 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 64 | } | 423 | 64 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 64 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 64 | return status; | 430 | 64 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 206 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 206 | Status status; | 416 | 206 | status._code = code; | 417 | 206 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 206 | if constexpr (sizeof...(args) == 0) { | 419 | 206 | status._err_msg->_msg = msg; | 420 | 206 | } else { | 421 | 206 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 206 | } | 423 | 206 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 206 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 202 | status._err_msg->_stack = get_stack_trace(1); | 427 | 202 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 202 | } | 429 | 206 | return status; | 430 | 206 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 114 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 114 | Status status; | 416 | 114 | status._code = code; | 417 | 114 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 114 | if constexpr (sizeof...(args) == 0) { | 419 | 114 | status._err_msg->_msg = msg; | 420 | 114 | } else { | 421 | 114 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 114 | } | 423 | 114 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 114 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 98 | status._err_msg->_stack = get_stack_trace(1); | 427 | 98 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 98 | } | 429 | 114 | return status; | 430 | 114 | } |
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 | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 9 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 9 | Status status; | 416 | 9 | status._code = code; | 417 | 9 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 9 | if constexpr (sizeof...(args) == 0) { | 419 | 7 | status._err_msg->_msg = msg; | 420 | 7 | } else { | 421 | 9 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 9 | } | 423 | 11 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 11 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 11 | status._err_msg->_stack = get_stack_trace(1); | 427 | 11 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 11 | } | 429 | 9 | return status; | 430 | 9 | } |
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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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 | 414 | 20 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 20 | Status status; | 416 | 20 | status._code = code; | 417 | 20 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 20 | if constexpr (sizeof...(args) == 0) { | 419 | 20 | status._err_msg->_msg = msg; | 420 | 20 | } else { | 421 | 20 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 20 | } | 423 | 20 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 20 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 4 | status._err_msg->_stack = get_stack_trace(1); | 427 | 4 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 4 | } | 429 | 20 | return status; | 430 | 20 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 23 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 23 | Status status; | 416 | 23 | status._code = code; | 417 | 23 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 23 | if constexpr (sizeof...(args) == 0) { | 419 | 23 | status._err_msg->_msg = msg; | 420 | 23 | } else { | 421 | 23 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 23 | } | 423 | 23 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 23 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 22 | status._err_msg->_stack = get_stack_trace(1); | 427 | 22 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 22 | } | 429 | 23 | return status; | 430 | 23 | } |
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 95.2k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 95.2k | Status status; | 416 | 95.2k | status._code = code; | 417 | 95.2k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 95.2k | if constexpr (sizeof...(args) == 0) { | 419 | 95.2k | status._err_msg->_msg = msg; | 420 | 95.2k | } else { | 421 | 95.2k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 95.2k | } | 423 | 95.2k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 95.2k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 95.2k | return status; | 430 | 95.2k | } |
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3 | Status status; | 416 | 3 | status._code = code; | 417 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3 | if constexpr (sizeof...(args) == 0) { | 419 | 3 | status._err_msg->_msg = msg; | 420 | 3 | } else { | 421 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3 | } | 423 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3 | return status; | 430 | 3 | } |
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 458k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 458k | Status status; | 416 | 458k | status._code = code; | 417 | 458k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 458k | if constexpr (sizeof...(args) == 0) { | 419 | 458k | status._err_msg->_msg = msg; | 420 | 458k | } else { | 421 | 458k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 458k | } | 423 | 458k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 458k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 458k | return status; | 430 | 458k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 414 | 20 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 20 | Status status; | 416 | 20 | status._code = code; | 417 | 20 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 20 | if constexpr (sizeof...(args) == 0) { | 419 | 20 | status._err_msg->_msg = msg; | 420 | 20 | } else { | 421 | 20 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 20 | } | 423 | 20 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 20 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 20 | return status; | 430 | 20 | } |
_ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 414 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3 | Status status; | 416 | 3 | status._code = code; | 417 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3 | if constexpr (sizeof...(args) == 0) { | 419 | 3 | status._err_msg->_msg = msg; | 420 | 3 | } else { | 421 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3 | } | 423 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3 | return status; | 430 | 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 | 414 | 3.38M | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3.38M | Status status; | 416 | 3.38M | status._code = code; | 417 | 3.38M | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3.38M | if constexpr (sizeof...(args) == 0) { | 419 | 3.38M | status._err_msg->_msg = msg; | 420 | 3.38M | } else { | 421 | 3.38M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3.38M | } | 423 | 3.38M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3.38M | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3.38M | return status; | 430 | 3.38M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 37 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 37 | Status status; | 416 | 37 | status._code = code; | 417 | 37 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 37 | if constexpr (sizeof...(args) == 0) { | 419 | 37 | status._err_msg->_msg = msg; | 420 | 37 | } else { | 421 | 37 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 37 | } | 423 | 37 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 37 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 37 | return status; | 430 | 37 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 40 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 40 | Status status; | 416 | 40 | status._code = code; | 417 | 40 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 40 | if constexpr (sizeof...(args) == 0) { | 419 | 40 | status._err_msg->_msg = msg; | 420 | 40 | } else { | 421 | 40 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 40 | } | 423 | 40 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 40 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 40 | return status; | 430 | 40 | } |
_ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_ Line | Count | Source | 414 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3 | Status status; | 416 | 3 | status._code = code; | 417 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3 | if constexpr (sizeof...(args) == 0) { | 419 | 3 | status._err_msg->_msg = msg; | 420 | 3 | } else { | 421 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3 | } | 423 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3 | return status; | 430 | 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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__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_ _ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 24 | Status status; | 416 | 24 | status._code = code; | 417 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 24 | if constexpr (sizeof...(args) == 0) { | 419 | 24 | status._err_msg->_msg = msg; | 420 | 24 | } else { | 421 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 24 | } | 423 | 24 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 24 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 24 | return status; | 430 | 24 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 8 | Status status; | 416 | 8 | status._code = code; | 417 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 8 | if constexpr (sizeof...(args) == 0) { | 419 | 8 | status._err_msg->_msg = msg; | 420 | 8 | } else { | 421 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 8 | } | 423 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 8 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 8 | return status; | 430 | 8 | } |
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 | 414 | 3.97k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3.97k | Status status; | 416 | 3.97k | status._code = code; | 417 | 3.97k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3.97k | if constexpr (sizeof...(args) == 0) { | 419 | 3.97k | status._err_msg->_msg = msg; | 420 | 3.97k | } else { | 421 | 3.97k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3.97k | } | 423 | 3.97k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3.97k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3.97k | return status; | 430 | 3.97k | } |
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 | 414 | 42 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 42 | Status status; | 416 | 42 | status._code = code; | 417 | 42 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 42 | if constexpr (sizeof...(args) == 0) { | 419 | 42 | status._err_msg->_msg = msg; | 420 | 42 | } else { | 421 | 42 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 42 | } | 423 | 42 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 42 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 42 | return status; | 430 | 42 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKjEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJlRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJlRlS2_S2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 16 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 16 | Status status; | 416 | 16 | status._code = code; | 417 | 16 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 16 | if constexpr (sizeof...(args) == 0) { | 419 | 16 | status._err_msg->_msg = msg; | 420 | 16 | } else { | 421 | 16 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 16 | } | 423 | 16 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 16 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 16 | return status; | 430 | 16 | } |
_ZN5doris6Status5ErrorILin7003ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 50 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 50 | Status status; | 416 | 50 | status._code = code; | 417 | 50 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 50 | if constexpr (sizeof...(args) == 0) { | 419 | 50 | status._err_msg->_msg = msg; | 420 | 50 | } else { | 421 | 50 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 50 | } | 423 | 50 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 50 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 50 | return status; | 430 | 50 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 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 | 414 | 4.81M | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4.81M | Status status; | 416 | 4.81M | status._code = code; | 417 | 4.81M | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4.82M | if constexpr (sizeof...(args) == 0) { | 419 | 4.82M | status._err_msg->_msg = msg; | 420 | 4.82M | } else { | 421 | 4.81M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4.81M | } | 423 | 4.81M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4.81M | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4.81M | return status; | 430 | 4.81M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
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 | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 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_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_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 104 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 104 | Status status; | 416 | 104 | status._code = code; | 417 | 104 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 104 | if constexpr (sizeof...(args) == 0) { | 419 | 104 | status._err_msg->_msg = msg; | 420 | 104 | } else { | 421 | 104 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 104 | } | 423 | 104 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 104 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 104 | return status; | 430 | 104 | } |
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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi32ELb1EJRmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin6003ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 10 | Status status; | 416 | 10 | status._code = code; | 417 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 10 | if constexpr (sizeof...(args) == 0) { | 419 | 10 | status._err_msg->_msg = msg; | 420 | 10 | } else { | 421 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 10 | } | 423 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 10 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 10 | return status; | 430 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin6003ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3 | Status status; | 416 | 3 | status._code = code; | 417 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3 | if constexpr (sizeof...(args) == 0) { | 419 | 3 | status._err_msg->_msg = msg; | 420 | 3 | } else { | 421 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3 | } | 423 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3 | return status; | 430 | 3 | } |
_ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 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_ 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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6004ELb1EJRjRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1.39k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1.39k | Status status; | 416 | 1.39k | status._code = code; | 417 | 1.39k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1.39k | if constexpr (sizeof...(args) == 0) { | 419 | 1.39k | status._err_msg->_msg = msg; | 420 | 1.39k | } else { | 421 | 1.39k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1.39k | } | 423 | 1.39k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1.39k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1.39k | return status; | 430 | 1.39k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJiRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 311 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 311 | Status status; | 416 | 311 | status._code = code; | 417 | 311 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 311 | if constexpr (sizeof...(args) == 0) { | 419 | 311 | status._err_msg->_msg = msg; | 420 | 311 | } else { | 421 | 311 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 311 | } | 423 | 311 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 311 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 311 | return status; | 430 | 311 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
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_ 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: _ZN5doris6Status5ErrorILi6ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 202 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 202 | Status status; | 416 | 202 | status._code = code; | 417 | 202 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 202 | if constexpr (sizeof...(args) == 0) { | 419 | 202 | status._err_msg->_msg = msg; | 420 | 202 | } else { | 421 | 202 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 202 | } | 423 | 202 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 202 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 200 | status._err_msg->_stack = get_stack_trace(1); | 427 | 200 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 200 | } | 429 | 202 | return status; | 430 | 202 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_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 | 414 | 106 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 106 | Status status; | 416 | 106 | status._code = code; | 417 | 106 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 106 | if constexpr (sizeof...(args) == 0) { | 419 | 106 | status._err_msg->_msg = msg; | 420 | 106 | } else { | 421 | 106 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 106 | } | 423 | 106 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 106 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 106 | return status; | 430 | 106 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1500ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3104ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEllEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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 | 414 | 2.21M | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2.21M | Status status; | 416 | 2.21M | status._code = code; | 417 | 2.21M | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2.21M | if constexpr (sizeof...(args) == 0) { | 419 | 2.21M | status._err_msg->_msg = msg; | 420 | 2.21M | } else { | 421 | 2.21M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2.21M | } | 423 | 2.21M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2.21M | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2.21M | return status; | 430 | 2.21M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2.70k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2.70k | Status status; | 416 | 2.70k | status._code = code; | 417 | 2.70k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2.70k | if constexpr (sizeof...(args) == 0) { | 419 | 2.70k | status._err_msg->_msg = msg; | 420 | 2.70k | } else { | 421 | 2.70k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2.70k | } | 423 | 2.70k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2.70k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2.70k | return status; | 430 | 2.70k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 138k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 138k | Status status; | 416 | 138k | status._code = code; | 417 | 138k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 138k | if constexpr (sizeof...(args) == 0) { | 419 | 138k | status._err_msg->_msg = msg; | 420 | 138k | } else { | 421 | 138k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 138k | } | 423 | 138k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 138k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 138k | return status; | 430 | 138k | } |
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 134 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 134 | Status status; | 416 | 134 | status._code = code; | 417 | 134 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 134 | if constexpr (sizeof...(args) == 0) { | 419 | 134 | status._err_msg->_msg = msg; | 420 | 134 | } else { | 421 | 134 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 134 | } | 423 | 134 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 134 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 134 | return status; | 430 | 134 | } |
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2.84k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2.84k | Status status; | 416 | 2.84k | status._code = code; | 417 | 2.84k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2.84k | if constexpr (sizeof...(args) == 0) { | 419 | 2.84k | status._err_msg->_msg = msg; | 420 | 2.84k | } else { | 421 | 2.84k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2.84k | } | 423 | 2.84k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2.84k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2.84k | return status; | 430 | 2.84k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 142 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 142 | Status status; | 416 | 142 | status._code = code; | 417 | 142 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 142 | if constexpr (sizeof...(args) == 0) { | 419 | 142 | status._err_msg->_msg = msg; | 420 | 142 | } else { | 421 | 142 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 142 | } | 423 | 142 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 142 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 142 | return status; | 430 | 142 | } |
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 | 414 | 5.95k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 5.95k | Status status; | 416 | 5.95k | status._code = code; | 417 | 5.95k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 5.95k | if constexpr (sizeof...(args) == 0) { | 419 | 5.95k | status._err_msg->_msg = msg; | 420 | 5.95k | } else { | 421 | 5.95k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 5.95k | } | 423 | 5.95k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 5.95k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 5.95k | return status; | 430 | 5.95k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin402ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin502ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNS_14TStorageFormat4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_lEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin3002ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 11 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 11 | Status status; | 416 | 11 | status._code = code; | 417 | 11 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 11 | if constexpr (sizeof...(args) == 0) { | 419 | 11 | status._err_msg->_msg = msg; | 420 | 11 | } else { | 421 | 11 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 11 | } | 423 | 11 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 11 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 11 | return status; | 430 | 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: _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 | 414 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 8 | Status status; | 416 | 8 | status._code = code; | 417 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 8 | if constexpr (sizeof...(args) == 0) { | 419 | 8 | status._err_msg->_msg = msg; | 420 | 8 | } else { | 421 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 8 | } | 423 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 8 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 8 | return status; | 430 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJiRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin233ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILin911ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRiS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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_ _ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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_ _ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 325k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 325k | Status status; | 416 | 325k | status._code = code; | 417 | 325k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 325k | if constexpr (sizeof...(args) == 0) { | 419 | 325k | status._err_msg->_msg = msg; | 420 | 325k | } else { | 421 | 325k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 325k | } | 423 | 325k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 325k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 325k | return status; | 430 | 325k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 542 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 542 | Status status; | 416 | 542 | status._code = code; | 417 | 542 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 542 | if constexpr (sizeof...(args) == 0) { | 419 | 542 | status._err_msg->_msg = msg; | 420 | 542 | } else { | 421 | 542 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 542 | } | 423 | 542 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 542 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 542 | return status; | 430 | 542 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 2 | return status; | 430 | 2 | } |
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 | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 8 | Status status; | 416 | 8 | status._code = code; | 417 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 8 | if constexpr (sizeof...(args) == 0) { | 419 | 8 | status._err_msg->_msg = msg; | 420 | 8 | } else { | 421 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 8 | } | 423 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 8 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 8 | return status; | 430 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 839 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 839 | Status status; | 416 | 839 | status._code = code; | 417 | 839 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 839 | if constexpr (sizeof...(args) == 0) { | 419 | 839 | status._err_msg->_msg = msg; | 420 | 839 | } else { | 421 | 839 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 839 | } | 423 | 839 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 839 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 839 | return status; | 430 | 839 | } |
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 | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 17 | Status status; | 416 | 17 | status._code = code; | 417 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 17 | if constexpr (sizeof...(args) == 0) { | 419 | 17 | status._err_msg->_msg = msg; | 420 | 17 | } else { | 421 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 17 | } | 423 | 17 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 17 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 17 | return status; | 430 | 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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_ 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: _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 | 414 | 546 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 546 | Status status; | 416 | 546 | status._code = code; | 417 | 546 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 546 | if constexpr (sizeof...(args) == 0) { | 419 | 546 | status._err_msg->_msg = msg; | 420 | 546 | } else { | 421 | 546 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 546 | } | 423 | 546 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 546 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 546 | return status; | 430 | 546 | } |
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: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 16 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 16 | Status status; | 416 | 16 | status._code = code; | 417 | 16 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 16 | if constexpr (sizeof...(args) == 0) { | 419 | 16 | status._err_msg->_msg = msg; | 420 | 16 | } else { | 421 | 16 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 16 | } | 423 | 16 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 16 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 16 | return status; | 430 | 16 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRiEEES0_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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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 | 414 | 327k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 327k | Status status; | 416 | 327k | status._code = code; | 417 | 327k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 327k | if constexpr (sizeof...(args) == 0) { | 419 | 327k | status._err_msg->_msg = msg; | 420 | 327k | } else { | 421 | 327k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 327k | } | 423 | 327k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 327k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 327k | return status; | 430 | 327k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 8 | Status status; | 416 | 8 | status._code = code; | 417 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 8 | if constexpr (sizeof...(args) == 0) { | 419 | 8 | status._err_msg->_msg = msg; | 420 | 8 | } else { | 421 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 8 | } | 423 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 8 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 8 | status._err_msg->_stack = get_stack_trace(1); | 427 | 8 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 8 | } | 429 | 8 | return status; | 430 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 971 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 971 | Status status; | 416 | 971 | status._code = code; | 417 | 971 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 971 | if constexpr (sizeof...(args) == 0) { | 419 | 971 | status._err_msg->_msg = msg; | 420 | 971 | } else { | 421 | 971 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 971 | } | 423 | 971 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 971 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 971 | return status; | 430 | 971 | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 3.11k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 3.11k | Status status; | 416 | 3.11k | status._code = code; | 417 | 3.11k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 3.11k | if constexpr (sizeof...(args) == 0) { | 419 | 3.11k | status._err_msg->_msg = msg; | 420 | 3.11k | } else { | 421 | 3.11k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 3.11k | } | 423 | 3.11k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 3.11k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 3.11k | return status; | 430 | 3.11k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
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 | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 2 | return status; | 430 | 2 | } |
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 | 414 | 27 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 27 | Status status; | 416 | 27 | status._code = code; | 417 | 27 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 27 | if constexpr (sizeof...(args) == 0) { | 419 | 27 | status._err_msg->_msg = msg; | 420 | 27 | } else { | 421 | 27 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 27 | } | 423 | 27 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 27 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 27 | return status; | 430 | 27 | } |
_ZN5doris6Status5ErrorILi47ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_RKjiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_RKmiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimiRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 206 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 206 | Status status; | 416 | 206 | status._code = code; | 417 | 206 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 206 | if constexpr (sizeof...(args) == 0) { | 419 | 206 | status._err_msg->_msg = msg; | 420 | 206 | } else { | 421 | 206 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 206 | } | 423 | 206 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 206 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 206 | return status; | 430 | 206 | } |
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 48 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 48 | Status status; | 416 | 48 | status._code = code; | 417 | 48 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 48 | if constexpr (sizeof...(args) == 0) { | 419 | 48 | status._err_msg->_msg = msg; | 420 | 48 | } else { | 421 | 48 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 48 | } | 423 | 48 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 48 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 48 | return status; | 430 | 48 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 15 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 15 | Status status; | 416 | 15 | status._code = code; | 417 | 15 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 15 | if constexpr (sizeof...(args) == 0) { | 419 | 15 | status._err_msg->_msg = msg; | 420 | 15 | } else { | 421 | 15 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 15 | } | 423 | 15 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 15 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 15 | return status; | 430 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 9.84k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 9.84k | Status status; | 416 | 9.84k | status._code = code; | 417 | 9.84k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 9.84k | if constexpr (sizeof...(args) == 0) { | 419 | 9.84k | status._err_msg->_msg = msg; | 420 | 9.84k | } else { | 421 | 9.84k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 9.84k | } | 423 | 9.84k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 9.84k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 9.84k | return status; | 430 | 9.84k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 36 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 36 | Status status; | 416 | 36 | status._code = code; | 417 | 36 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 36 | if constexpr (sizeof...(args) == 0) { | 419 | 36 | status._err_msg->_msg = msg; | 420 | 36 | } else { | 421 | 36 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 36 | } | 423 | 36 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 36 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 36 | return status; | 430 | 36 | } |
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 | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
_ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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 | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10vectorized9TypeIndexEEEES0_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: _ZN5doris6Status5ErrorILi16ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbbiRKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiRKS7_bEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 18 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 18 | Status status; | 416 | 18 | status._code = code; | 417 | 18 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 18 | if constexpr (sizeof...(args) == 0) { | 419 | 18 | status._err_msg->_msg = msg; | 420 | 18 | } else { | 421 | 18 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 18 | } | 423 | 18 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 18 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 18 | return status; | 430 | 18 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 783 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 783 | Status status; | 416 | 783 | status._code = code; | 417 | 783 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 783 | if constexpr (sizeof...(args) == 0) { | 419 | 783 | status._err_msg->_msg = msg; | 420 | 783 | } else { | 421 | 783 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 783 | } | 423 | 783 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 783 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 783 | return status; | 430 | 783 | } |
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_ _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 18 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 18 | Status status; | 416 | 18 | status._code = code; | 417 | 18 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 18 | if constexpr (sizeof...(args) == 0) { | 419 | 18 | status._err_msg->_msg = msg; | 420 | 18 | } else { | 421 | 18 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 18 | } | 423 | 18 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 18 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 18 | return status; | 430 | 18 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 6 | return status; | 430 | 6 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKPKcRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 2 | status._err_msg->_stack = get_stack_trace(1); | 427 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 2 | } | 429 | 2 | return status; | 430 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT1_ Line | Count | Source | 414 | 28 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 28 | Status status; | 416 | 28 | status._code = code; | 417 | 28 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 28 | if constexpr (sizeof...(args) == 0) { | 419 | 28 | status._err_msg->_msg = msg; | 420 | 28 | } else { | 421 | 28 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 28 | } | 423 | 28 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 28 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 28 | return status; | 430 | 28 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEPKcEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 18 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 18 | Status status; | 416 | 18 | status._code = code; | 417 | 18 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 18 | if constexpr (sizeof...(args) == 0) { | 419 | 18 | status._err_msg->_msg = msg; | 420 | 18 | } else { | 421 | 18 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 18 | } | 423 | 18 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 18 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 18 | return status; | 430 | 18 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2 | Status status; | 416 | 2 | status._code = code; | 417 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2 | if constexpr (sizeof...(args) == 0) { | 419 | 2 | status._err_msg->_msg = msg; | 420 | 2 | } else { | 421 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2 | } | 423 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2 | return status; | 430 | 2 | } |
_ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 10 | Status status; | 416 | 10 | status._code = code; | 417 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 10 | if constexpr (sizeof...(args) == 0) { | 419 | 10 | status._err_msg->_msg = msg; | 420 | 10 | } else { | 421 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 10 | } | 423 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 10 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 10 | return status; | 430 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 6 | Status status; | 416 | 6 | status._code = code; | 417 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 6 | if constexpr (sizeof...(args) == 0) { | 419 | 6 | status._err_msg->_msg = msg; | 420 | 6 | } else { | 421 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 6 | } | 423 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 6 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 6 | return status; | 430 | 6 | } |
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 | 414 | 196k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 196k | Status status; | 416 | 196k | status._code = code; | 417 | 196k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 196k | if constexpr (sizeof...(args) == 0) { | 419 | 196k | status._err_msg->_msg = msg; | 420 | 196k | } else { | 421 | 196k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 196k | } | 423 | 196k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 196k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 196k | return status; | 430 | 196k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRbS7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 414 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1 | Status status; | 416 | 1 | status._code = code; | 417 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1 | if constexpr (sizeof...(args) == 0) { | 419 | 1 | status._err_msg->_msg = msg; | 420 | 1 | } else { | 421 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1 | } | 423 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1 | return status; | 430 | 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: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_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: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 446k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 446k | Status status; | 416 | 446k | status._code = code; | 417 | 446k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 446k | if constexpr (sizeof...(args) == 0) { | 419 | 446k | status._err_msg->_msg = msg; | 420 | 446k | } else { | 421 | 446k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 446k | } | 423 | 446k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 446k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 446k | return status; | 430 | 446k | } |
_ZN5doris6Status5ErrorILi1ELb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Line | Count | Source | 414 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 4 | Status status; | 416 | 4 | status._code = code; | 417 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 4 | if constexpr (sizeof...(args) == 0) { | 419 | 4 | status._err_msg->_msg = msg; | 420 | 4 | } else { | 421 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 4 | } | 423 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 4 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 4 | return status; | 430 | 4 | } |
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 | 414 | 56 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 56 | Status status; | 416 | 56 | status._code = code; | 417 | 56 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 56 | if constexpr (sizeof...(args) == 0) { | 419 | 56 | status._err_msg->_msg = msg; | 420 | 56 | } else { | 421 | 56 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 56 | } | 423 | 56 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 56 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 56 | return status; | 430 | 56 | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Line | Count | Source | 414 | 1.81k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 1.81k | Status status; | 416 | 1.81k | status._code = code; | 417 | 1.81k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 1.81k | if constexpr (sizeof...(args) == 0) { | 419 | 1.81k | status._err_msg->_msg = msg; | 420 | 1.81k | } else { | 421 | 1.81k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 1.81k | } | 423 | 1.81k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 1.81k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 1.81k | return status; | 430 | 1.81k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7311ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 414 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 24 | Status status; | 416 | 24 | status._code = code; | 417 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 24 | if constexpr (sizeof...(args) == 0) { | 419 | 24 | status._err_msg->_msg = msg; | 420 | 24 | } else { | 421 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 24 | } | 423 | 24 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 24 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 24 | return status; | 430 | 24 | } |
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 | 414 | 112 | Status static Error(std::string_view msg, Args&&... args) { | 415 | 112 | Status status; | 416 | 112 | status._code = code; | 417 | 112 | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 112 | if constexpr (sizeof...(args) == 0) { | 419 | 112 | status._err_msg->_msg = msg; | 420 | 112 | } else { | 421 | 112 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 112 | } | 423 | 112 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 112 | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 112 | status._err_msg->_stack = get_stack_trace(1); | 427 | 112 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 112 | } | 429 | 112 | return status; | 430 | 112 | } |
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 | 414 | 2.83k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 2.83k | Status status; | 416 | 2.83k | status._code = code; | 417 | 2.83k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 2.83k | if constexpr (sizeof...(args) == 0) { | 419 | 2.83k | status._err_msg->_msg = msg; | 420 | 2.83k | } else { | 421 | 2.83k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 2.83k | } | 423 | 2.83k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 2.83k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 2.83k | return status; | 430 | 2.83k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 414 | 33.0k | Status static Error(std::string_view msg, Args&&... args) { | 415 | 33.0k | Status status; | 416 | 33.0k | status._code = code; | 417 | 33.0k | status._err_msg = std::make_unique<ErrMsg>(); | 418 | 33.0k | if constexpr (sizeof...(args) == 0) { | 419 | 33.0k | status._err_msg->_msg = msg; | 420 | 33.0k | } else { | 421 | 33.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 422 | 33.0k | } | 423 | 33.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 424 | 33.0k | config::enable_stacktrace) { | 425 | | // Delete the first one frame pointers, which are inside the status.h | 426 | 0 | status._err_msg->_stack = get_stack_trace(1); | 427 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 428 | 0 | } | 429 | 33.0k | return status; | 430 | 33.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ |
431 | | |
432 | | template <bool stacktrace = true, typename... Args> |
433 | 3.61M | Status static Error(int code, std::string_view msg, Args&&... args) { |
434 | 3.61M | Status status; |
435 | 3.61M | status._code = code; |
436 | 3.61M | status._err_msg = std::make_unique<ErrMsg>(); |
437 | 3.61M | if constexpr (sizeof...(args) == 0) { |
438 | 0 | status._err_msg->_msg = msg; |
439 | 0 | } else { |
440 | 0 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
441 | 0 | } |
442 | 3.61M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
443 | 3.61M | config::enable_stacktrace) { |
444 | 780 | status._err_msg->_stack = get_stack_trace(1); |
445 | 780 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
446 | 780 | } |
447 | 3.61M | return status; |
448 | 3.61M | } _ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 433 | 526k | Status static Error(int code, std::string_view msg, Args&&... args) { | 434 | 526k | Status status; | 435 | 526k | status._code = code; | 436 | 526k | status._err_msg = std::make_unique<ErrMsg>(); | 437 | 526k | if constexpr (sizeof...(args) == 0) { | 438 | 526k | status._err_msg->_msg = msg; | 439 | 526k | } else { | 440 | 526k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 441 | 526k | } | 442 | 526k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 443 | 526k | config::enable_stacktrace) { | 444 | 0 | status._err_msg->_stack = get_stack_trace(1); | 445 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 446 | 0 | } | 447 | 526k | return status; | 448 | 526k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 433 | 3.08M | Status static Error(int code, std::string_view msg, Args&&... args) { | 434 | 3.08M | Status status; | 435 | 3.08M | status._code = code; | 436 | 3.08M | status._err_msg = std::make_unique<ErrMsg>(); | 437 | 3.08M | if constexpr (sizeof...(args) == 0) { | 438 | 3.07M | status._err_msg->_msg = msg; | 439 | 3.07M | } else { | 440 | 3.08M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 441 | 3.08M | } | 442 | 3.08M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 443 | 3.08M | config::enable_stacktrace) { | 444 | 780 | status._err_msg->_stack = get_stack_trace(1); | 445 | 780 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 446 | 780 | } | 447 | 3.08M | return status; | 448 | 3.08M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
449 | | |
450 | 3.86G | static Status OK() { return {}; } |
451 | | |
452 | | // default have stacktrace. could disable manually. |
453 | | #define ERROR_CTOR(name, code) \ |
454 | | template <bool stacktrace = true, typename... Args> \ |
455 | 2.22M | static Status name(std::string_view msg, Args&&... args) { \ |
456 | 2.22M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
457 | 2.22M | } _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ _ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 6 | } |
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 1.04k | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1.04k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1.04k | } |
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 16 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 16 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 16 | } |
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 206 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 206 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 206 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 114 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 114 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 114 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 9 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 9 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 9 | } |
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 | 455 | 20 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 20 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 20 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 23 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 23 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 23 | } |
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_ _ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 467 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 467 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 467 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
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_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_ Line | Count | Source | 455 | 3 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 3 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
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 | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: bitshuffle_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status10CorruptionILb1EJRmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_3EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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 | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 202 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 202 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 202 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 2.21M | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2.21M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2.21M | } |
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_S9_DpOT0_ _ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 430 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 430 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 430 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 839 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 839 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 839 | } |
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 | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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: _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 | 455 | 546 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 546 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 546 | } |
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: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_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: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12RuntimeErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 8 | } |
_ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 27 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 27 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_RKjiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_RKmiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimiRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKllEEES0_St17basic_string_viewIcS7_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_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 | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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 | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10vectorized9TypeIndexEEEES0_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: _ZN5doris6Status13InternalErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 6 | } |
_ZN5doris6Status13InternalErrorILb1EJRKPKcRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRbS7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 455 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status12NotSupportedILb1EJKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 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_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_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: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ 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_ _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 455 | 112 | static Status name(std::string_view msg, Args&&... args) { \ | 456 | 112 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 457 | 112 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJN3fmt2v78arg_joinISt23_Rb_tree_const_iteratorIiES6_cEEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
458 | | |
459 | | // default have no stacktrace. could enable manually. |
460 | | #define ERROR_CTOR_NOSTACK(name, code) \ |
461 | | template <bool stacktrace = false, typename... Args> \ |
462 | 5.57M | static Status name(std::string_view msg, Args&&... args) { \ |
463 | 5.57M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
464 | 5.57M | } _ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 5.82k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 5.82k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 5.82k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 4.64k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4.64k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4.64k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 871k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 871k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 871k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 594 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 594 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 594 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 3.38M | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 3.38M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 3.38M | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 37 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 37 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 37 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 40 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 40 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 40 | } |
_ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 42 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 42 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 42 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_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 | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 106 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 106 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 106 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 325k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 325k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 325k | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 542 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 542 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 542 | } |
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 8 | } |
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_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 16 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 16 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 16 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 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 | 462 | 327k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 327k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 327k | } |
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 | 462 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13NotAuthorizedILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidJsonPathILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 206 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 206 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 206 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 48 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 48 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 48 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 15 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 15 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 9.84k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 9.84k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 9.84k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 36 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 36 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 36 | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
_ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 6 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 18 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 18 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 18 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 6 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 462 | 783 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 783 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 783 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 462 | 18 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 18 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 18 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT0_ Line | Count | Source | 462 | 28 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 28 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 28 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEPKcEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
_ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 18 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 18 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 18 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 462 | 196k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 196k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 196k | } |
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 462 | 446k | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 446k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 446k | } |
_ZN5doris6Status9CancelledILb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Line | Count | Source | 462 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 463 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 464 | 4 | } |
|
465 | | |
466 | | ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT) |
467 | | ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED) |
468 | | ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED) |
469 | | ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT) |
470 | | ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH) |
471 | | ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE) |
472 | | ERROR_CTOR(Corruption, CORRUPTION) |
473 | | ERROR_CTOR(IOError, IO_ERROR) |
474 | | ERROR_CTOR(NotFound, NOT_FOUND) |
475 | | ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST) |
476 | | ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY) |
477 | | ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR) |
478 | | ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE) |
479 | | ERROR_CTOR(InternalError, INTERNAL_ERROR) |
480 | | ERROR_CTOR_NOSTACK(WaitForRf, PIP_WAIT_FOR_RF) |
481 | | ERROR_CTOR_NOSTACK(WaitForScannerContext, PIP_WAIT_FOR_SC) |
482 | | ERROR_CTOR(RuntimeError, RUNTIME_ERROR) |
483 | | ERROR_CTOR_NOSTACK(Cancelled, CANCELLED) |
484 | | ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED) |
485 | | ERROR_CTOR(RpcError, THRIFT_RPC_ERROR) |
486 | | ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT) |
487 | | ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS) |
488 | | ERROR_CTOR(Uninitialized, UNINITIALIZED) |
489 | | ERROR_CTOR(Aborted, ABORTED) |
490 | | ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR) |
491 | | ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED) |
492 | | ERROR_CTOR(HttpError, HTTP_ERROR) |
493 | | ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN) |
494 | | ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR) |
495 | | ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED) |
496 | | ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR) |
497 | | #undef ERROR_CTOR |
498 | | |
499 | | template <int code> |
500 | 85.3M | bool is() const { |
501 | 85.3M | return code == _code; |
502 | 85.3M | } Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv _ZNK5doris6Status2isILin3115EEEbv Line | Count | Source | 500 | 8 | bool is() const { | 501 | 8 | return code == _code; | 502 | 8 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv _ZNK5doris6Status2isILi31EEEbv Line | Count | Source | 500 | 1.09M | bool is() const { | 501 | 1.09M | return code == _code; | 502 | 1.09M | } |
_ZNK5doris6Status2isILi35EEEbv Line | Count | Source | 500 | 2 | bool is() const { | 501 | 2 | return code == _code; | 502 | 2 | } |
_ZNK5doris6Status2isILin7000EEEbv Line | Count | Source | 500 | 1.79M | bool is() const { | 501 | 1.79M | return code == _code; | 502 | 1.79M | } |
_ZNK5doris6Status2isILin7001EEEbv Line | Count | Source | 500 | 819k | bool is() const { | 501 | 819k | return code == _code; | 502 | 819k | } |
_ZNK5doris6Status2isILi5EEEbv Line | Count | Source | 500 | 206k | bool is() const { | 501 | 206k | return code == _code; | 502 | 206k | } |
_ZNK5doris6Status2isILin3002EEEbv Line | Count | Source | 500 | 53.3k | bool is() const { | 501 | 53.3k | return code == _code; | 502 | 53.3k | } |
_ZNK5doris6Status2isILi34EEEbv Line | Count | Source | 500 | 2 | bool is() const { | 501 | 2 | return code == _code; | 502 | 2 | } |
_ZNK5doris6Status2isILin406EEEbv Line | Count | Source | 500 | 5.95k | bool is() const { | 501 | 5.95k | return code == _code; | 502 | 5.95k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv _ZNK5doris6Status2isILi6EEEbv Line | Count | Source | 500 | 3 | bool is() const { | 501 | 3 | return code == _code; | 502 | 3 | } |
_ZNK5doris6Status2isILin908EEEbv Line | Count | Source | 500 | 2.70k | bool is() const { | 501 | 2.70k | return code == _code; | 502 | 2.70k | } |
_ZNK5doris6Status2isILin7002EEEbv Line | Count | Source | 500 | 2.58M | bool is() const { | 501 | 2.58M | return code == _code; | 502 | 2.58M | } |
_ZNK5doris6Status2isILi30EEEbv Line | Count | Source | 500 | 65.2M | bool is() const { | 501 | 65.2M | return code == _code; | 502 | 65.2M | } |
_ZNK5doris6Status2isILin2000EEEbv Line | Count | Source | 500 | 275k | bool is() const { | 501 | 275k | return code == _code; | 502 | 275k | } |
_ZNK5doris6Status2isILi32EEEbv Line | Count | Source | 500 | 6.55M | bool is() const { | 501 | 6.55M | return code == _code; | 502 | 6.55M | } |
_ZNK5doris6Status2isILin6004EEEbv Line | Count | Source | 500 | 1.00k | bool is() const { | 501 | 1.00k | return code == _code; | 502 | 1.00k | } |
_ZNK5doris6Status2isILi39EEEbv Line | Count | Source | 500 | 2.21M | bool is() const { | 501 | 2.21M | return code == _code; | 502 | 2.21M | } |
_ZNK5doris6Status2isILin2010EEEbv Line | Count | Source | 500 | 138k | bool is() const { | 501 | 138k | return code == _code; | 502 | 138k | } |
_ZNK5doris6Status2isILin808EEEbv Line | Count | Source | 500 | 142k | bool is() const { | 501 | 142k | return code == _code; | 502 | 142k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv _ZNK5doris6Status2isILin6003EEEbv Line | Count | Source | 500 | 17 | bool is() const { | 501 | 17 | return code == _code; | 502 | 17 | } |
_ZNK5doris6Status2isILi14EEEbv Line | Count | Source | 500 | 1.10k | bool is() const { | 501 | 1.10k | return code == _code; | 502 | 1.10k | } |
_ZNK5doris6Status2isILi46EEEbv Line | Count | Source | 500 | 3.97M | bool is() const { | 501 | 3.97M | return code == _code; | 502 | 3.97M | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv _ZNK5doris6Status2isILi42EEEbv Line | Count | Source | 500 | 775 | bool is() const { | 501 | 775 | return code == _code; | 502 | 775 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv _ZNK5doris6Status2isILi73EEEbv Line | Count | Source | 500 | 132 | bool is() const { | 501 | 132 | return code == _code; | 502 | 132 | } |
_ZNK5doris6Status2isILi8EEEbv Line | Count | Source | 500 | 2.77k | bool is() const { | 501 | 2.77k | return code == _code; | 502 | 2.77k | } |
_ZNK5doris6Status2isILi37EEEbv Line | Count | Source | 500 | 2.77k | bool is() const { | 501 | 2.77k | return code == _code; | 502 | 2.77k | } |
_ZNK5doris6Status2isILi9EEEbv Line | Count | Source | 500 | 2.77k | bool is() const { | 501 | 2.77k | return code == _code; | 502 | 2.77k | } |
_ZNK5doris6Status2isILin7311EEEbv Line | Count | Source | 500 | 250k | bool is() const { | 501 | 250k | return code == _code; | 502 | 250k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv |
503 | | |
504 | 0 | void set_code(int code) { _code = code; } |
505 | | |
506 | 4.04G | bool ok() const { return _code == ErrorCode::OK; } |
507 | | |
508 | | // Convert into TStatus. |
509 | | void to_thrift(TStatus* status) const; |
510 | | TStatus to_thrift() const; |
511 | | void to_protobuf(PStatus* status) const; |
512 | | |
513 | | std::string to_string() const; |
514 | | std::string to_string_no_stack() const; |
515 | | |
516 | | /// @return A json representation of this status. |
517 | | std::string to_json() const; |
518 | | |
519 | 632k | int code() const { return _code; } |
520 | | |
521 | | /// Clone this status and add the specified prefix to the message. |
522 | | /// |
523 | | /// If this status is OK, then an OK status will be returned. |
524 | | /// |
525 | | /// @param [in] msg |
526 | | /// The message to prepend. |
527 | | /// @return A ref to Status object |
528 | | Status& prepend(std::string_view msg); |
529 | | |
530 | | /// Add the specified suffix to the message. |
531 | | /// |
532 | | /// If this status is OK, then an OK status will be returned. |
533 | | /// |
534 | | /// @param [in] msg |
535 | | /// The message to append. |
536 | | /// @return A ref to Status object |
537 | | Status& append(std::string_view msg); |
538 | | |
539 | | // if(!status) or if (status) will use this operator |
540 | 217M | operator bool() const { return this->ok(); } |
541 | | |
542 | | // Used like if ASSERT_EQ(res, Status::OK()) |
543 | | // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state |
544 | | // ignore error messages during comparison |
545 | 112k | bool operator==(const Status& st) const { return _code == st._code; } |
546 | | |
547 | | // Used like if ASSERT_NE(res, Status::OK()) |
548 | 6.43M | bool operator!=(const Status& st) const { return _code != st._code; } |
549 | | |
550 | | friend std::ostream& operator<<(std::ostream& ostr, const Status& status); |
551 | | |
552 | 1.06M | std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); } |
553 | | |
554 | 0 | std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; } |
555 | | |
556 | | friend io::ObjectStorageStatus convert_to_obj_response(Status st); |
557 | | |
558 | | private: |
559 | | int _code; |
560 | | struct ErrMsg { |
561 | | std::string _msg; |
562 | | std::string _stack; |
563 | | }; |
564 | | std::unique_ptr<ErrMsg> _err_msg; |
565 | | |
566 | 611k | std::string code_as_string() const { |
567 | 611k | return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code)) |
568 | 611k | : fmt::format("E{}", (int16_t)_code); |
569 | 611k | } |
570 | | }; |
571 | | |
572 | | // There are many thread using status to indicate the cancel state, one thread may update it and |
573 | | // the other thread will read it. Status is not thread safe, for example, if one thread is update it |
574 | | // and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and |
575 | | // it is deconstructed during copy method. |
576 | | // And also we could not use lock, because we need get status frequently to check if it is cancelled. |
577 | | // The default value is ok. |
578 | | class AtomicStatus { |
579 | | public: |
580 | 3.63M | AtomicStatus() : error_st_(Status::OK()) {} |
581 | | |
582 | 204M | bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; } |
583 | | |
584 | 516k | bool update(const Status& new_status) { |
585 | | // If new status is normal, or the old status is abnormal, then not need update |
586 | 516k | if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) { |
587 | 421k | return false; |
588 | 421k | } |
589 | 94.9k | std::lock_guard l(mutex_); |
590 | 94.9k | if (error_code_.load(std::memory_order_acquire) != 0) { |
591 | 18 | return false; |
592 | 18 | } |
593 | 94.9k | error_st_ = new_status; |
594 | 94.9k | error_code_.store(new_status.code(), std::memory_order_release); |
595 | 94.9k | return true; |
596 | 94.9k | } |
597 | | |
598 | | // will copy a new status object to avoid concurrency |
599 | | // This stauts could only be called when ok==false |
600 | 8.18M | Status status() const { |
601 | 8.18M | std::lock_guard l(mutex_); |
602 | 8.18M | return error_st_; |
603 | 8.18M | } |
604 | | |
605 | | AtomicStatus(const AtomicStatus&) = delete; |
606 | | void operator=(const AtomicStatus&) = delete; |
607 | | |
608 | | private: |
609 | | std::atomic_int16_t error_code_ = 0; |
610 | | Status error_st_; |
611 | | // mutex's lock is not a const method, but we will use this mutex in |
612 | | // some const method, so that it should be mutable. |
613 | | mutable std::mutex mutex_; |
614 | | }; |
615 | | |
616 | 441k | inline std::ostream& operator<<(std::ostream& ostr, const Status& status) { |
617 | 441k | ostr << '[' << status.code_as_string() << ']'; |
618 | 441k | ostr << status.msg(); |
619 | 441k | if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) { |
620 | 4.27k | ostr << '\n' << status._err_msg->_stack; |
621 | 4.27k | } |
622 | 441k | return ostr; |
623 | 441k | } |
624 | | |
625 | 316k | inline std::string Status::to_string() const { |
626 | 316k | std::stringstream ss; |
627 | 316k | ss << *this; |
628 | 316k | return ss.str(); |
629 | 316k | } |
630 | | |
631 | 0 | inline std::string Status::to_string_no_stack() const { |
632 | 0 | return fmt::format("[{}]{}", code_as_string(), msg()); |
633 | 0 | } |
634 | | |
635 | | // some generally useful macros |
636 | | #define RETURN_IF_ERROR(stmt) \ |
637 | 2.96G | do { \ |
638 | 2.96G | Status _status_ = (stmt); \ olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_0clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_1clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_2clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_3clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_4clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_5clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_6clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_7clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_8clEv Line | Count | Source | 638 | 10 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_9clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_10clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_11clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_12clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_13clEv Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv Line | Count | Source | 638 | 9.40k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 638 | 91.9k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 638 | 48.5k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Line | Count | Source | 638 | 48.5k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Line | Count | Source | 638 | 53.7k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator15_init_containerERN3COWINS_10vectorized7IColumnEE11mutable_ptrIS4_EEmiENK3$_0clERNS3_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 638 | 106k | Status _status_ = (stmt); \ |
hierarchical_data_iterator.cpp:_ZZN5doris10segment_v224HierarchicalDataIterator32_init_null_map_and_clear_columnsERN3COWINS_10vectorized7IColumnEE11mutable_ptrIS4_EES8_mENK3$_0clERNS3_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 638 | 20.4k | Status _status_ = (stmt); \ |
_ZZN5doris10segment_v225SparseColumnMergeIterator10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS5_EEPbENKUlPNS4_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_ Line | Count | Source | 638 | 40.0k | Status _status_ = (stmt); \ |
_ZZN5doris10segment_v225SparseColumnMergeIterator14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEENKUlPNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESF_ Line | Count | Source | 638 | 17.6k | 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 fragment_mgr.cpp:_ZZN5doris11FragmentMgr24_get_or_create_query_ctxERKNS_23TPipelineFragmentParamsENS_9TUniqueIdEbNS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENK3$_0clERN5phmap13flat_hash_mapIS4_St8weak_ptrIS7_ENSB_4HashIS4_EENSB_7EqualToIS4_EESaISt4pairIKS4_SE_EEEE Line | Count | Source | 638 | 5.57M | Status _status_ = (stmt); \ |
group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEv Line | Count | Source | 638 | 426 | Status _status_ = (stmt); \ |
Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEvENKUlvE_clEv load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv Line | Count | Source | 638 | 320 | Status _status_ = (stmt); \ |
load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv Line | Count | Source | 638 | 20 | Status _status_ = (stmt); \ |
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv Line | Count | Source | 638 | 8 | Status _status_ = (stmt); \ |
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv Line | Count | Source | 638 | 331 | Status _status_ = (stmt); \ |
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 18 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris2io14MultiTablePipe10exec_plansINS_23TExecPlanFragmentParamsEEENS_6StatusEPNS_7ExecEnvESt6vectorIT_SaIS8_EEENKUlPNS_12RuntimeStateEPS4_E_clESC_SD_ _ZZN5doris2io14MultiTablePipe10exec_plansINS_23TPipelineFragmentParamsEEENS_6StatusEPNS_7ExecEnvESt6vectorIT_SaIS8_EEENKUlPNS_12RuntimeStateEPS4_E_clESC_SD_ Line | Count | Source | 638 | 166 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 3.16k | 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 | 638 | 106 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 2.83k | Status _status_ = (stmt); \ |
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjSaIjEESt4hashIlESt8equal_toIlESaISt4pairIKlS7_EEEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE Line | Count | Source | 638 | 198k | Status _status_ = (stmt); \ |
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv Line | Count | Source | 638 | 12.3k | Status _status_ = (stmt); \ |
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv Line | Count | Source | 638 | 8.07k | Status _status_ = (stmt); \ |
http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 266 | Status _status_ = (stmt); \ |
stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_1clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 3.13k | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 256 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 256 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 720 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 17.3k | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE0_clB5cxx11Ev Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_0clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_1clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_2clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_3clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_4clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_5clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_6clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader15_parse_json_docEPmPbENK3$_7clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgERKN9rapidjson12GenericValueINS2_4UTF8IcEENS2_19MemoryPoolAllocatorINS2_12CrtAllocatorEEEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESH_PbENK3$_0clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgERKN9rapidjson12GenericValueINS2_4UTF8IcEENS2_19MemoryPoolAllocatorINS2_12CrtAllocatorEEEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESH_PbENK3$_1clB5cxx11Ev new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 4 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 4 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 552 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 184 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_ Line | Count | Source | 638 | 29 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SG_IbLb0EEEEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESI_EEDaSB_SC_SD_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESI_EEDaSB_SC_SD_ Line | Count | Source | 638 | 32 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SG_IbLb1EEEEDaSB_SC_SD_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_E_clISt17integral_constantIbLb0EESG_EEDaSB_SC_ Line | Count | Source | 638 | 284 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_E_clISt17integral_constantIbLb1EESG_EEDaSB_SC_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_IbLb0EEEEDaSB_SC_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_IbLb1EEEEDaSB_SC_ Line | Count | Source | 638 | 36 | Status _status_ = (stmt); \ |
spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv Line | Count | Source | 638 | 8 | Status _status_ = (stmt); \ |
async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv Line | Count | Source | 638 | 280k | Status _status_ = (stmt); \ |
autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv Line | Count | Source | 638 | 396 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 294 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 38 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 822 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 824 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_ Line | Count | Source | 638 | 31.7k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_ Line | Count | Source | 638 | 720 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_ Line | Count | Source | 638 | 822k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_ Line | Count | Source | 638 | 979k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_ Line | Count | Source | 638 | 84.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 | 638 | 40 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_ Line | Count | Source | 638 | 5.76k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_ Line | Count | Source | 638 | 2.85M | 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 | 638 | 220 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_ Line | Count | Source | 638 | 97.5k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_ Line | Count | Source | 638 | 300 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_ Line | Count | Source | 638 | 31.8k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_ Line | Count | Source | 638 | 3.62k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_ Line | Count | Source | 638 | 39.0k | 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 | 638 | 11.9k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_ Line | Count | Source | 638 | 6.63k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_ Line | Count | Source | 638 | 11.5k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_ Line | Count | Source | 638 | 11.0k | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev Line | Count | Source | 638 | 784 | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev Line | Count | Source | 638 | 784 | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev Line | Count | Source | 638 | 1.15k | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev Line | Count | Source | 638 | 1.15k | Status _status_ = (stmt); \ |
vmeta_scanner.cpp:_ZZN5doris10vectorized12VMetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 12.0k | Status _status_ = (stmt); \ |
schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv Line | Count | Source | 638 | 114k | 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 | 638 | 17.8k | Status _status_ = (stmt); \ |
schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 3.62k | Status _status_ = (stmt); \ |
schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 50 | Status _status_ = (stmt); \ |
schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 6 | Status _status_ = (stmt); \ |
schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 14 | Status _status_ = (stmt); \ |
schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 702 | Status _status_ = (stmt); \ |
schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 24 | Status _status_ = (stmt); \ |
schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 638 | 1.06k | Status _status_ = (stmt); \ |
Unexecuted instantiation: schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 638 | 204 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 638 | 264 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEENS_12HashMapTableISF_NS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEENS_12HashMapTableISF_NS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 180 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Line | Count | Source | 638 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 54 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 108 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 638 | 486 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 638 | 114 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEENS_12HashMapTableISF_NS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEENS_12HashMapTableISF_NS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 144 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Line | Count | Source | 638 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 48 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 638 | 108 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 638 | 528 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 638 | 360 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEENS_12HashMapTableISG_NS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEENS_12HashMapTableISG_NS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 294 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Line | Count | Source | 638 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 312 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 252 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 638 | 930 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 638 | 210 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 638 | 12 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEENS_12HashMapTableISG_NS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEENS_12HashMapTableISG_NS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 246 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Line | Count | Source | 638 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 252 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm256EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 638 | 252 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE9HashCRC32ISF_E16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_0clERSt9monostate streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS9_vELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 33.1k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIh9PHHashMapIhPc11DefaultHashIhvELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 6.39k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIt9PHHashMapItPc11DefaultHashItvELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 1.83k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 23.2k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 9.21k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_19MethodStringNoCacheINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 4.93k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISA_Pc9HashCRC32ISA_ELb0EEEEEENS_6StatusERT_ Line | Count | Source | 638 | 42 | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISA_Pc14HashMixWrapperISA_9HashCRC32ISA_EELb0EEEEEENS_6StatusERT_ streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIhNS2_15DataWithNullKeyI9PHHashMapIhPc11DefaultHashIhvELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 10.4k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberItNS2_15DataWithNullKeyI9PHHashMapItPc11DefaultHashItvELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 2.34k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 11.9k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 50.6k | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEEEEEENS_6StatusERT_ streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIN4wide7integerILm128EjEENS2_15DataWithNullKeyI9PHHashMapISB_Pc9HashCRC32ISB_ELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 16.6k | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIN4wide7integerILm128EjEENS2_15DataWithNullKeyI9PHHashMapISB_Pc14HashMixWrapperISB_9HashCRC32ISB_EELb0EEEEEEEEEENS_6StatusERT_ streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_19MethodStringNoCacheINS2_15DataWithNullKeyINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEEEEEENS_6StatusERT_ Line | Count | Source | 638 | 3.85k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb0EEEEENS_6StatusERT_ Line | Count | Source | 638 | 1.21k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 638 | 56 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32ISB_ELb0EELb0EEEEENS_6StatusERT_ Line | Count | Source | 638 | 96 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32ISB_ELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 638 | 15.5k | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32ISB_ELb0EELb0EEEEENS_6StatusERT_ streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32ISB_ELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 638 | 1.44k | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc9HashCRC32IS9_ELb0EELb0EEEEENS_6StatusERT_ streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc9HashCRC32IS9_ELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 638 | 9.69k | Status _status_ = (stmt); \ |
Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc14HashMixWrapperISB_9HashCRC32ISB_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc14HashMixWrapperISB_9HashCRC32ISB_EELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc14HashMixWrapperISB_9HashCRC32ISB_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc14HashMixWrapperISB_9HashCRC32ISB_EELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb1EEEEENS_6StatusERT_ task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv Line | Count | Source | 638 | 1.40k | 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_threadsEvENK3$_0clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_1clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_2clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_3clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_4clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_5clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_6clEv Line | Count | Source | 638 | 2 | Status _status_ = (stmt); \ |
|
639 | 2.96G | if (UNLIKELY(!_status_.ok())) { \ |
640 | 589k | return _status_; \ |
641 | 589k | } \ |
642 | 2.96G | } while (false) |
643 | | |
644 | | #define PROPAGATE_FALSE(stmt) \ |
645 | 13.9M | do { \ |
646 | 13.9M | if (UNLIKELY(!static_cast<bool>(stmt))) { \ |
647 | 410 | return false; \ |
648 | 410 | } \ |
649 | 13.9M | } while (false) |
650 | | |
651 | | #define THROW_IF_ERROR(stmt) \ |
652 | 2.26M | do { \ |
653 | 2.26M | Status _status_ = (stmt); \ |
654 | 2.26M | if (UNLIKELY(!_status_.ok())) { \ |
655 | 0 | throw Exception(_status_); \ |
656 | 0 | } \ |
657 | 2.26M | } while (false) |
658 | | |
659 | | #define RETURN_IF_STATUS_ERROR(status, stmt) \ |
660 | 360k | do { \ |
661 | 360k | status = (stmt); \ |
662 | 360k | if (UNLIKELY(!status.ok())) { \ |
663 | 0 | return; \ |
664 | 0 | } \ |
665 | 360k | } while (false) |
666 | | |
667 | | #define EXIT_IF_ERROR(stmt) \ |
668 | 8 | do { \ |
669 | 8 | Status _status_ = (stmt); \ |
670 | 8 | if (UNLIKELY(!_status_.ok())) { \ |
671 | 0 | LOG(ERROR) << _status_; \ |
672 | 0 | exit(1); \ |
673 | 0 | } \ |
674 | 8 | } while (false) |
675 | | |
676 | | #define RETURN_FALSE_IF_ERROR(stmt) \ |
677 | 27.7M | do { \ |
678 | 27.7M | Status status = (stmt); \ |
679 | 27.7M | if (UNLIKELY(!status.ok())) { \ |
680 | 1 | return false; \ |
681 | 1 | } \ |
682 | 27.7M | } while (false) |
683 | | |
684 | | /// @brief Emit a warning if @c to_call returns a bad status. |
685 | | #define WARN_IF_ERROR(to_call, warning_prefix) \ |
686 | 723k | do { \ |
687 | 723k | Status _s = (to_call); \ |
688 | 723k | if (UNLIKELY(!_s.ok())) { \ |
689 | 68 | LOG(WARNING) << (warning_prefix) << ": " << _s; \ |
690 | 68 | } \ |
691 | 723k | } while (false); |
692 | | |
693 | | #define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix) \ |
694 | 3.55M | do { \ |
695 | 3.55M | Status _s = (stmt); \ |
696 | 3.55M | if (UNLIKELY(!_s.ok())) { \ |
697 | 0 | LOG(WARNING) << (warning_prefix) << ", error: " << _s; \ |
698 | 0 | return _s; \ |
699 | 0 | } \ |
700 | 3.55M | } while (false); |
701 | | |
702 | | template <typename T> |
703 | | using Result = expected<T, Status>; |
704 | | |
705 | | using ResultError = unexpected<Status>; |
706 | | |
707 | | #define RETURN_IF_ERROR_RESULT(stmt) \ |
708 | 1.19M | do { \ |
709 | 1.19M | Status _status_ = (stmt); \ |
710 | 1.19M | if (UNLIKELY(!_status_.ok())) { \ |
711 | 18 | return unexpected(std::move(_status_)); \ |
712 | 18 | } \ |
713 | 1.19M | } while (false) |
714 | | |
715 | | #define DORIS_TRY(stmt) \ |
716 | 22.6M | ({ \ |
717 | 22.6M | auto&& res = (stmt); \ |
718 | 22.6M | using T = std::decay_t<decltype(res)>; \ |
719 | 22.6M | if (!res.has_value()) [[unlikely]] { \ |
720 | 2.32M | return std::forward<T>(res).error(); \ |
721 | 2.32M | } \ |
722 | 22.6M | std::forward<T>(res).value(); \ |
723 | 20.3M | }); |
724 | | |
725 | | } // namespace doris |
726 | | |
727 | | // specify formatter for Status |
728 | | template <> |
729 | | struct fmt::formatter<doris::Status> { |
730 | | template <typename ParseContext> |
731 | 216 | constexpr auto parse(ParseContext& ctx) { |
732 | 216 | return ctx.begin(); |
733 | 216 | } |
734 | | |
735 | | template <typename FormatContext> |
736 | 216 | auto format(doris::Status const& status, FormatContext& ctx) { |
737 | 216 | return fmt::format_to(ctx.out(), "{}", status.to_string()); |
738 | 216 | } |
739 | | }; |