/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(INVALID_TABLET_STATE, -7211, false); \ |
297 | 10 | E(ROWSETS_EXPIRED, -7311, false); \ |
298 | 10 | E(CGROUP_ERROR, -7411, false); |
299 | | |
300 | | // Define constexpr int error_code_name = error_code_value |
301 | | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE; |
302 | | APPLY_FOR_OLAP_ERROR_CODES(M) |
303 | | #undef M |
304 | | |
305 | | #define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name; |
306 | | APPLY_FOR_THRIFT_ERROR_CODES(MM) |
307 | | #undef MM |
308 | | |
309 | | constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536; |
310 | | struct ErrorCodeState { |
311 | | int16_t error_code = 0; |
312 | | bool stacktrace = true; |
313 | | std::string description; |
314 | | size_t count = 0; // Used for count the number of error happens |
315 | | std::mutex mutex; // lock guard for count state |
316 | | }; |
317 | | extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM]; |
318 | | |
319 | | class ErrorCodeInitializer { |
320 | | public: |
321 | 10 | ErrorCodeInitializer(int temp) : signal_value(temp) { |
322 | 655k | for (auto& error_state : error_states) { |
323 | 655k | error_state.error_code = 0; |
324 | 655k | } |
325 | 10 | #define M(NAME, ENABLESTACKTRACE) \ |
326 | 430 | error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \ |
327 | 430 | error_states[TStatusCode::NAME].description = #NAME; \ |
328 | 430 | error_states[TStatusCode::NAME].error_code = TStatusCode::NAME; |
329 | 430 | APPLY_FOR_THRIFT_ERROR_CODES(M) |
330 | 10 | #undef M |
331 | | // In status.h, if error code > 0, then it means it will be used in TStatusCode and will |
332 | | // also be used in FE. |
333 | | // Other error codes that with error code < 0, will only be used in BE. |
334 | | // We use abs(error code) as the index in error_states, so that these two kinds of error |
335 | | // codes MUST not have overlap. |
336 | | // Add an assert here to make sure the code in TStatusCode and other error code are not |
337 | | // overlapped. |
338 | 10 | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) \ |
339 | 2.14k | assert(error_states[abs(ERRORCODE)].error_code == 0); \ |
340 | 2.14k | error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \ |
341 | 2.14k | error_states[abs(ERRORCODE)].error_code = ERRORCODE; |
342 | 2.14k | APPLY_FOR_OLAP_ERROR_CODES(M) |
343 | 10 | #undef M |
344 | 10 | } |
345 | | |
346 | 10 | void check_init() const { |
347 | | //the signal value is 0, it means the global error states not inited, it's logical error |
348 | | // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time. |
349 | 10 | if (signal_value == 0) { |
350 | 0 | exit(-1); |
351 | 0 | } |
352 | 10 | } |
353 | | |
354 | | private: |
355 | | int signal_value = 0; |
356 | | }; |
357 | | |
358 | | extern ErrorCodeInitializer error_code_init; |
359 | | } // namespace ErrorCode |
360 | | |
361 | | class [[nodiscard]] Status { |
362 | | public: |
363 | 5.12G | Status() : _code(ErrorCode::OK), _err_msg(nullptr) {} |
364 | | |
365 | | // used to convert Exception to Status |
366 | 72.3k | Status(int code, std::string msg, std::string stack = "") : _code(code) { |
367 | 72.3k | _err_msg = std::make_unique<ErrMsg>(); |
368 | 72.3k | _err_msg->_msg = std::move(msg); |
369 | 72.3k | if (config::enable_stacktrace) { |
370 | 72.3k | _err_msg->_stack = std::move(stack); |
371 | 72.3k | } |
372 | 72.3k | } |
373 | | |
374 | | // copy c'tor makes copy of error detail so Status can be returned by value |
375 | 185M | Status(const Status& rhs) { *this = rhs; } |
376 | | |
377 | | // move c'tor |
378 | 46.5M | Status(Status&& rhs) noexcept = default; |
379 | | |
380 | | // same as copy c'tor |
381 | 186M | Status& operator=(const Status& rhs) { |
382 | 186M | _code = rhs._code; |
383 | 186M | if (rhs._err_msg) { |
384 | 1.35M | _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg); |
385 | 1.35M | } |
386 | 186M | return *this; |
387 | 186M | } |
388 | | |
389 | | // move assign |
390 | 158M | Status& operator=(Status&& rhs) noexcept { |
391 | 158M | _code = rhs._code; |
392 | 158M | if (rhs._err_msg) { |
393 | 1.07M | _err_msg = std::move(rhs._err_msg); |
394 | 1.07M | } |
395 | 158M | return *this; |
396 | 158M | } |
397 | | |
398 | | template <bool stacktrace = true> |
399 | 133k | Status static create(const TStatus& status) { |
400 | 133k | return Error<stacktrace>( |
401 | 133k | status.status_code, |
402 | 133k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); |
403 | 133k | } _ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE Line | Count | Source | 399 | 24.9k | Status static create(const TStatus& status) { | 400 | 24.9k | return Error<stacktrace>( | 401 | 24.9k | status.status_code, | 402 | 24.9k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 403 | 24.9k | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE Line | Count | Source | 399 | 108k | Status static create(const TStatus& status) { | 400 | 108k | return Error<stacktrace>( | 401 | 108k | status.status_code, | 402 | 108k | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 403 | 108k | } |
|
404 | | |
405 | | template <bool stacktrace = true> |
406 | 2.14M | Status static create(const PStatus& pstatus) { |
407 | 2.14M | return Error<stacktrace>( |
408 | 2.14M | pstatus.status_code(), |
409 | 2.14M | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); |
410 | 2.14M | } _ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE Line | Count | Source | 406 | 2.14M | Status static create(const PStatus& pstatus) { | 407 | 2.14M | return Error<stacktrace>( | 408 | 2.14M | pstatus.status_code(), | 409 | 2.14M | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 410 | 2.14M | } |
_ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE Line | Count | Source | 406 | 112 | Status static create(const PStatus& pstatus) { | 407 | 112 | return Error<stacktrace>( | 408 | 112 | pstatus.status_code(), | 409 | 112 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 410 | 112 | } |
|
411 | | |
412 | | template <int code, bool stacktrace = true, typename... Args> |
413 | 13.9M | Status static Error(std::string_view msg, Args&&... args) { |
414 | 13.9M | Status status; |
415 | 13.9M | status._code = code; |
416 | 13.9M | status._err_msg = std::make_unique<ErrMsg>(); |
417 | 13.9M | if constexpr (sizeof...(args) == 0) { |
418 | 3.22M | status._err_msg->_msg = msg; |
419 | 3.22M | } else { |
420 | 3.22M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
421 | 3.22M | } |
422 | 13.9M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
423 | 13.9M | config::enable_stacktrace) { |
424 | | // Delete the first one frame pointers, which are inside the status.h |
425 | 938 | status._err_msg->_stack = get_stack_trace(1); |
426 | 938 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
427 | 938 | } |
428 | 13.9M | return status; |
429 | 13.9M | } _ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 54.3k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 54.3k | Status status; | 415 | 54.3k | status._code = code; | 416 | 54.3k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 54.3k | if constexpr (sizeof...(args) == 0) { | 418 | 54.2k | status._err_msg->_msg = msg; | 419 | 54.2k | } else { | 420 | 54.3k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 54.3k | } | 422 | 54.3k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 54.3k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 54.3k | return status; | 429 | 54.3k | } |
_ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 4 | status._err_msg->_stack = get_stack_trace(1); | 426 | 4 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 4 | } | 428 | 4 | return status; | 429 | 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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 4.43k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4.43k | Status status; | 415 | 4.43k | status._code = code; | 416 | 4.43k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4.43k | if constexpr (sizeof...(args) == 0) { | 418 | 4.43k | status._err_msg->_msg = msg; | 419 | 4.43k | } else { | 420 | 4.43k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4.43k | } | 422 | 4.43k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4.43k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4.43k | return status; | 429 | 4.43k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8 | Status status; | 415 | 8 | status._code = code; | 416 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8 | if constexpr (sizeof...(args) == 0) { | 418 | 8 | status._err_msg->_msg = msg; | 419 | 8 | } else { | 420 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8 | } | 422 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 8 | return status; | 429 | 8 | } |
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 152 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 152 | Status status; | 415 | 152 | status._code = code; | 416 | 152 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 152 | if constexpr (sizeof...(args) == 0) { | 418 | 152 | status._err_msg->_msg = msg; | 419 | 152 | } else { | 420 | 152 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 152 | } | 422 | 152 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 152 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 102 | status._err_msg->_stack = get_stack_trace(1); | 426 | 102 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 102 | } | 428 | 152 | return status; | 429 | 152 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 30 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 30 | Status status; | 415 | 30 | status._code = code; | 416 | 30 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 30 | if constexpr (sizeof...(args) == 0) { | 418 | 30 | status._err_msg->_msg = msg; | 419 | 30 | } else { | 420 | 30 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 30 | } | 422 | 30 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 30 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 30 | return status; | 429 | 30 | } |
_ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
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 | 413 | 94.3k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 94.3k | Status status; | 415 | 94.3k | status._code = code; | 416 | 94.3k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 94.3k | if constexpr (sizeof...(args) == 0) { | 418 | 94.3k | status._err_msg->_msg = msg; | 419 | 94.3k | } else { | 420 | 94.3k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 94.3k | } | 422 | 94.3k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 94.3k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 94.3k | return status; | 429 | 94.3k | } |
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 | 413 | 894k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 894k | Status status; | 415 | 894k | status._code = code; | 416 | 894k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 894k | if constexpr (sizeof...(args) == 0) { | 418 | 894k | status._err_msg->_msg = msg; | 419 | 894k | } else { | 420 | 894k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 894k | } | 422 | 894k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 894k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 894k | return status; | 429 | 894k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 594 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 594 | Status status; | 415 | 594 | status._code = code; | 416 | 594 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 594 | if constexpr (sizeof...(args) == 0) { | 418 | 594 | status._err_msg->_msg = msg; | 419 | 594 | } else { | 420 | 594 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 594 | } | 422 | 594 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 594 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 594 | return status; | 429 | 594 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 206 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 206 | Status status; | 415 | 206 | status._code = code; | 416 | 206 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 206 | if constexpr (sizeof...(args) == 0) { | 418 | 206 | status._err_msg->_msg = msg; | 419 | 206 | } else { | 420 | 206 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 206 | } | 422 | 206 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 206 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 202 | status._err_msg->_stack = get_stack_trace(1); | 426 | 202 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 202 | } | 428 | 206 | return status; | 429 | 206 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 112 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 112 | Status status; | 415 | 112 | status._code = code; | 416 | 112 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 112 | if constexpr (sizeof...(args) == 0) { | 418 | 112 | status._err_msg->_msg = msg; | 419 | 112 | } else { | 420 | 112 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 112 | } | 422 | 112 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 112 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 100 | status._err_msg->_stack = get_stack_trace(1); | 426 | 100 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 100 | } | 428 | 112 | return status; | 429 | 112 | } |
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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 2 | } |
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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 20 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 20 | Status status; | 415 | 20 | status._code = code; | 416 | 20 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 20 | if constexpr (sizeof...(args) == 0) { | 418 | 20 | status._err_msg->_msg = msg; | 419 | 20 | } else { | 420 | 20 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 20 | } | 422 | 20 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 20 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 4 | status._err_msg->_stack = get_stack_trace(1); | 426 | 4 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 4 | } | 428 | 20 | return status; | 429 | 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_ 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_ _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 27 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 27 | Status status; | 415 | 27 | status._code = code; | 416 | 27 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 27 | if constexpr (sizeof...(args) == 0) { | 418 | 27 | status._err_msg->_msg = msg; | 419 | 27 | } else { | 420 | 27 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 27 | } | 422 | 27 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 27 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 26 | status._err_msg->_stack = get_stack_trace(1); | 426 | 26 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 26 | } | 428 | 27 | return status; | 429 | 27 | } |
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 3 | Status status; | 415 | 3 | status._code = code; | 416 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 3 | if constexpr (sizeof...(args) == 0) { | 418 | 3 | status._err_msg->_msg = msg; | 419 | 3 | } else { | 420 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 3 | } | 422 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 3 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 3 | return status; | 429 | 3 | } |
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 137k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 137k | Status status; | 415 | 137k | status._code = code; | 416 | 137k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 137k | if constexpr (sizeof...(args) == 0) { | 418 | 137k | status._err_msg->_msg = msg; | 419 | 137k | } else { | 420 | 137k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 137k | } | 422 | 137k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 137k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 137k | return status; | 429 | 137k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi40ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 664 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 664 | Status status; | 415 | 664 | status._code = code; | 416 | 664 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 664 | if constexpr (sizeof...(args) == 0) { | 418 | 664 | status._err_msg->_msg = msg; | 419 | 664 | } else { | 420 | 664 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 664 | } | 422 | 664 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 664 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 664 | return status; | 429 | 664 | } |
_ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 413 | 20 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 20 | Status status; | 415 | 20 | status._code = code; | 416 | 20 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 20 | if constexpr (sizeof...(args) == 0) { | 418 | 20 | status._err_msg->_msg = msg; | 419 | 20 | } else { | 420 | 20 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 20 | } | 422 | 20 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 20 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 20 | return status; | 429 | 20 | } |
_ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 413 | 71.4k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 71.4k | Status status; | 415 | 71.4k | status._code = code; | 416 | 71.4k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 71.4k | if constexpr (sizeof...(args) == 0) { | 418 | 71.4k | status._err_msg->_msg = msg; | 419 | 71.4k | } else { | 420 | 71.4k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 71.4k | } | 422 | 71.4k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 71.4k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 71.4k | return status; | 429 | 71.4k | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 413 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 3 | Status status; | 415 | 3 | status._code = code; | 416 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 3 | if constexpr (sizeof...(args) == 0) { | 418 | 3 | status._err_msg->_msg = msg; | 419 | 3 | } else { | 420 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 3 | } | 422 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 3 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 3 | return status; | 429 | 3 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 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_ _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 12 | Status status; | 415 | 12 | status._code = code; | 416 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 12 | if constexpr (sizeof...(args) == 0) { | 418 | 12 | status._err_msg->_msg = msg; | 419 | 12 | } else { | 420 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 12 | } | 422 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 12 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 12 | return status; | 429 | 12 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 35 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 35 | Status status; | 415 | 35 | status._code = code; | 416 | 35 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 35 | if constexpr (sizeof...(args) == 0) { | 418 | 35 | status._err_msg->_msg = msg; | 419 | 35 | } else { | 420 | 35 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 35 | } | 422 | 35 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 35 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 35 | return status; | 429 | 35 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 42 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 42 | Status status; | 415 | 42 | status._code = code; | 416 | 42 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 42 | if constexpr (sizeof...(args) == 0) { | 418 | 42 | status._err_msg->_msg = msg; | 419 | 42 | } else { | 420 | 42 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 42 | } | 422 | 42 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 42 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 42 | return status; | 429 | 42 | } |
_ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_ Line | Count | Source | 413 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 3 | Status status; | 415 | 3 | status._code = code; | 416 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 3 | if constexpr (sizeof...(args) == 0) { | 418 | 3 | status._err_msg->_msg = msg; | 419 | 3 | } else { | 420 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 3 | } | 422 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 3 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 3 | return status; | 429 | 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_ _ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 3.42M | Status static Error(std::string_view msg, Args&&... args) { | 414 | 3.42M | Status status; | 415 | 3.42M | status._code = code; | 416 | 3.42M | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 3.42M | if constexpr (sizeof...(args) == 0) { | 418 | 3.42M | status._err_msg->_msg = msg; | 419 | 3.42M | } else { | 420 | 3.42M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 3.42M | } | 422 | 3.42M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 3.42M | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 3.42M | return status; | 429 | 3.42M | } |
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 24 | Status status; | 415 | 24 | status._code = code; | 416 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 24 | if constexpr (sizeof...(args) == 0) { | 418 | 24 | status._err_msg->_msg = msg; | 419 | 24 | } else { | 420 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 24 | } | 422 | 24 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 24 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 24 | return status; | 429 | 24 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 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 | 413 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8 | Status status; | 415 | 8 | status._code = code; | 416 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8 | if constexpr (sizeof...(args) == 0) { | 418 | 8 | status._err_msg->_msg = msg; | 419 | 8 | } else { | 420 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8 | } | 422 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 8 | return status; | 429 | 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 | 413 | 1.55k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1.55k | Status status; | 415 | 1.55k | status._code = code; | 416 | 1.55k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1.55k | if constexpr (sizeof...(args) == 0) { | 418 | 1.55k | status._err_msg->_msg = msg; | 419 | 1.55k | } else { | 420 | 1.55k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1.55k | } | 422 | 1.55k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1.55k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1.55k | return status; | 429 | 1.55k | } |
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 | 413 | 48 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 48 | Status status; | 415 | 48 | status._code = code; | 416 | 48 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 48 | if constexpr (sizeof...(args) == 0) { | 418 | 48 | status._err_msg->_msg = msg; | 419 | 48 | } else { | 420 | 48 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 48 | } | 422 | 48 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 48 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 48 | return status; | 429 | 48 | } |
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 | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 6 | return status; | 429 | 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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 12 | Status status; | 415 | 12 | status._code = code; | 416 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 12 | if constexpr (sizeof...(args) == 0) { | 418 | 12 | status._err_msg->_msg = msg; | 419 | 12 | } else { | 420 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 12 | } | 422 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 12 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 12 | return status; | 429 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 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 | 413 | 5.05M | Status static Error(std::string_view msg, Args&&... args) { | 414 | 5.05M | Status status; | 415 | 5.05M | status._code = code; | 416 | 5.05M | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 5.05M | if constexpr (sizeof...(args) == 0) { | 418 | 5.05M | status._err_msg->_msg = msg; | 419 | 5.05M | } else { | 420 | 5.05M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 5.05M | } | 422 | 5.05M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 5.05M | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 5.05M | return status; | 429 | 5.05M | } |
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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 104 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 104 | Status status; | 415 | 104 | status._code = code; | 416 | 104 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 104 | if constexpr (sizeof...(args) == 0) { | 418 | 104 | status._err_msg->_msg = msg; | 419 | 104 | } else { | 420 | 104 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 104 | } | 422 | 104 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 104 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 104 | return status; | 429 | 104 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 10 | Status status; | 415 | 10 | status._code = code; | 416 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 10 | if constexpr (sizeof...(args) == 0) { | 418 | 10 | status._err_msg->_msg = msg; | 419 | 10 | } else { | 420 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 10 | } | 422 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 10 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 10 | return status; | 429 | 10 | } |
_ZN5doris6Status5ErrorILin6004ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
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 | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
_ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 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_ _ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 40 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 40 | Status status; | 415 | 40 | status._code = code; | 416 | 40 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 40 | if constexpr (sizeof...(args) == 0) { | 418 | 40 | status._err_msg->_msg = msg; | 419 | 40 | } else { | 420 | 40 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 40 | } | 422 | 40 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 40 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 40 | return status; | 429 | 40 | } |
_ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 6 | return status; | 429 | 6 | } |
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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6004ELb1EJRjRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1.25k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1.25k | Status status; | 415 | 1.25k | status._code = code; | 416 | 1.25k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1.25k | if constexpr (sizeof...(args) == 0) { | 418 | 1.25k | status._err_msg->_msg = msg; | 419 | 1.25k | } else { | 420 | 1.25k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1.25k | } | 422 | 1.25k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1.25k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1.25k | return status; | 429 | 1.25k | } |
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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_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_ _ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 293 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 293 | Status status; | 415 | 293 | status._code = code; | 416 | 293 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 293 | if constexpr (sizeof...(args) == 0) { | 418 | 293 | status._err_msg->_msg = msg; | 419 | 293 | } else { | 420 | 293 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 293 | } | 422 | 293 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 293 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 293 | return status; | 429 | 293 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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: _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: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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 | 413 | 106 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 106 | Status status; | 415 | 106 | status._code = code; | 416 | 106 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 106 | if constexpr (sizeof...(args) == 0) { | 418 | 106 | status._err_msg->_msg = msg; | 419 | 106 | } else { | 420 | 106 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 106 | } | 422 | 106 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 106 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 106 | return status; | 429 | 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: _ZN5doris6Status5ErrorILin230ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEllEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJNSt7__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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 2.70M | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2.70M | Status status; | 415 | 2.70M | status._code = code; | 416 | 2.70M | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2.70M | if constexpr (sizeof...(args) == 0) { | 418 | 2.70M | status._err_msg->_msg = msg; | 419 | 2.70M | } else { | 420 | 2.70M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2.70M | } | 422 | 2.70M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2.70M | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2.70M | return status; | 429 | 2.70M | } |
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 | 413 | 2.46k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2.46k | Status status; | 415 | 2.46k | status._code = code; | 416 | 2.46k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2.46k | if constexpr (sizeof...(args) == 0) { | 418 | 2.46k | status._err_msg->_msg = msg; | 419 | 2.46k | } else { | 420 | 2.46k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2.46k | } | 422 | 2.46k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2.46k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2.46k | return status; | 429 | 2.46k | } |
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 | 413 | 217k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 217k | Status status; | 415 | 217k | status._code = code; | 416 | 217k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 217k | if constexpr (sizeof...(args) == 0) { | 418 | 217k | status._err_msg->_msg = msg; | 419 | 217k | } else { | 420 | 217k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 217k | } | 422 | 217k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 217k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 217k | return status; | 429 | 217k | } |
_ZN5doris6Status5ErrorILin2010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 244 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 244 | Status status; | 415 | 244 | status._code = code; | 416 | 244 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 244 | if constexpr (sizeof...(args) == 0) { | 418 | 244 | status._err_msg->_msg = msg; | 419 | 244 | } else { | 420 | 244 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 244 | } | 422 | 244 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 244 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 244 | return status; | 429 | 244 | } |
_ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 8.26k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8.26k | Status status; | 415 | 8.26k | status._code = code; | 416 | 8.26k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8.26k | if constexpr (sizeof...(args) == 0) { | 418 | 8.26k | status._err_msg->_msg = msg; | 419 | 8.26k | } else { | 420 | 8.26k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8.26k | } | 422 | 8.26k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8.26k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 8.26k | return status; | 429 | 8.26k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1.03k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1.03k | Status status; | 415 | 1.03k | status._code = code; | 416 | 1.03k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1.03k | if constexpr (sizeof...(args) == 0) { | 418 | 1.03k | status._err_msg->_msg = msg; | 419 | 1.03k | } else { | 420 | 1.03k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1.03k | } | 422 | 1.03k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1.03k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1.03k | return status; | 429 | 1.03k | } |
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 | 413 | 296 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 296 | Status status; | 415 | 296 | status._code = code; | 416 | 296 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 296 | if constexpr (sizeof...(args) == 0) { | 418 | 296 | status._err_msg->_msg = msg; | 419 | 296 | } else { | 420 | 296 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 296 | } | 422 | 296 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 296 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 296 | return status; | 429 | 296 | } |
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 | 413 | 11 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 11 | Status status; | 415 | 11 | status._code = code; | 416 | 11 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 11 | if constexpr (sizeof...(args) == 0) { | 418 | 11 | status._err_msg->_msg = msg; | 419 | 11 | } else { | 420 | 11 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 11 | } | 422 | 11 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 11 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 11 | return status; | 429 | 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 | 413 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8 | Status status; | 415 | 8 | status._code = code; | 416 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8 | if constexpr (sizeof...(args) == 0) { | 418 | 8 | status._err_msg->_msg = msg; | 419 | 8 | } else { | 420 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8 | } | 422 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 8 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 325k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 325k | Status status; | 415 | 325k | status._code = code; | 416 | 325k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 325k | if constexpr (sizeof...(args) == 0) { | 418 | 325k | status._err_msg->_msg = msg; | 419 | 325k | } else { | 420 | 325k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 325k | } | 422 | 325k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 325k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 325k | return status; | 429 | 325k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 552 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 552 | Status status; | 415 | 552 | status._code = code; | 416 | 552 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 552 | if constexpr (sizeof...(args) == 0) { | 418 | 552 | status._err_msg->_msg = msg; | 419 | 552 | } else { | 420 | 552 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 552 | } | 422 | 552 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 552 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 552 | return status; | 429 | 552 | } |
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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 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 | 413 | 90 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 90 | Status status; | 415 | 90 | status._code = code; | 416 | 90 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 90 | if constexpr (sizeof...(args) == 0) { | 418 | 90 | status._err_msg->_msg = msg; | 419 | 90 | } else { | 420 | 90 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 90 | } | 422 | 90 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 90 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 90 | return status; | 429 | 90 | } |
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 | 413 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 10 | Status status; | 415 | 10 | status._code = code; | 416 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 10 | if constexpr (sizeof...(args) == 0) { | 418 | 10 | status._err_msg->_msg = msg; | 419 | 10 | } else { | 420 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 10 | } | 422 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 10 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 10 | return status; | 429 | 10 | } |
_ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 783 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 783 | Status status; | 415 | 783 | status._code = code; | 416 | 783 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 783 | if constexpr (sizeof...(args) == 0) { | 418 | 783 | status._err_msg->_msg = msg; | 419 | 783 | } else { | 420 | 783 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 783 | } | 422 | 783 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 783 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 783 | return status; | 429 | 783 | } |
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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 17 | Status status; | 415 | 17 | status._code = code; | 416 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 17 | if constexpr (sizeof...(args) == 0) { | 418 | 17 | status._err_msg->_msg = msg; | 419 | 17 | } else { | 420 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 17 | } | 422 | 17 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 17 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 17 | return status; | 429 | 17 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 546 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 546 | Status status; | 415 | 546 | status._code = code; | 416 | 546 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 546 | if constexpr (sizeof...(args) == 0) { | 418 | 546 | status._err_msg->_msg = msg; | 419 | 546 | } else { | 420 | 546 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 546 | } | 422 | 546 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 546 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 546 | return status; | 429 | 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_ _ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
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 | 413 | 16 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 16 | Status status; | 415 | 16 | status._code = code; | 416 | 16 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 16 | if constexpr (sizeof...(args) == 0) { | 418 | 16 | status._err_msg->_msg = msg; | 419 | 16 | } else { | 420 | 16 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 16 | } | 422 | 16 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 16 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 16 | return status; | 429 | 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 | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 398k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 398k | Status status; | 415 | 398k | status._code = code; | 416 | 398k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 398k | if constexpr (sizeof...(args) == 0) { | 418 | 398k | status._err_msg->_msg = msg; | 419 | 398k | } else { | 420 | 398k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 398k | } | 422 | 398k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 398k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 398k | return status; | 429 | 398k | } |
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 | 413 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8 | Status status; | 415 | 8 | status._code = code; | 416 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8 | if constexpr (sizeof...(args) == 0) { | 418 | 8 | status._err_msg->_msg = msg; | 419 | 8 | } else { | 420 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8 | } | 422 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 8 | status._err_msg->_stack = get_stack_trace(1); | 426 | 8 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 8 | } | 428 | 8 | return status; | 429 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 6 | return status; | 429 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 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 | 413 | 1.00k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1.00k | Status status; | 415 | 1.00k | status._code = code; | 416 | 1.00k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1.00k | if constexpr (sizeof...(args) == 0) { | 418 | 1.00k | status._err_msg->_msg = msg; | 419 | 1.00k | } else { | 420 | 1.00k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1.00k | } | 422 | 1.00k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1.00k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1.00k | return status; | 429 | 1.00k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2.37k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2.37k | Status status; | 415 | 2.37k | status._code = code; | 416 | 2.37k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2.37k | if constexpr (sizeof...(args) == 0) { | 418 | 2.37k | status._err_msg->_msg = msg; | 419 | 2.37k | } else { | 420 | 2.37k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2.37k | } | 422 | 2.37k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2.37k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2.37k | return status; | 429 | 2.37k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 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 | 413 | 27 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 27 | Status status; | 415 | 27 | status._code = code; | 416 | 27 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 27 | if constexpr (sizeof...(args) == 0) { | 418 | 27 | status._err_msg->_msg = msg; | 419 | 27 | } else { | 420 | 27 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 27 | } | 422 | 27 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 27 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 27 | return status; | 429 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RiEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 200 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 200 | Status status; | 415 | 200 | status._code = code; | 416 | 200 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 200 | if constexpr (sizeof...(args) == 0) { | 418 | 200 | status._err_msg->_msg = msg; | 419 | 200 | } else { | 420 | 200 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 200 | } | 422 | 200 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 200 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 200 | status._err_msg->_stack = get_stack_trace(1); | 426 | 200 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 200 | } | 428 | 200 | return status; | 429 | 200 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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_ _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 12 | Status status; | 415 | 12 | status._code = code; | 416 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 12 | if constexpr (sizeof...(args) == 0) { | 418 | 12 | status._err_msg->_msg = msg; | 419 | 12 | } else { | 420 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 12 | } | 422 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 12 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 12 | return status; | 429 | 12 | } |
_ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 294 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 294 | Status status; | 415 | 294 | status._code = code; | 416 | 294 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 294 | if constexpr (sizeof...(args) == 0) { | 418 | 294 | status._err_msg->_msg = msg; | 419 | 294 | } else { | 420 | 294 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 294 | } | 422 | 294 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 294 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 294 | return status; | 429 | 294 | } |
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 48 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 48 | Status status; | 415 | 48 | status._code = code; | 416 | 48 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 48 | if constexpr (sizeof...(args) == 0) { | 418 | 48 | status._err_msg->_msg = msg; | 419 | 48 | } else { | 420 | 48 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 48 | } | 422 | 48 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 48 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 48 | return status; | 429 | 48 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 15 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 15 | Status status; | 415 | 15 | status._code = code; | 416 | 15 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 15 | if constexpr (sizeof...(args) == 0) { | 418 | 15 | status._err_msg->_msg = msg; | 419 | 15 | } else { | 420 | 15 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 15 | } | 422 | 15 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 15 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 15 | return status; | 429 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 9.86k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 9.86k | Status status; | 415 | 9.86k | status._code = code; | 416 | 9.86k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 9.86k | if constexpr (sizeof...(args) == 0) { | 418 | 9.86k | status._err_msg->_msg = msg; | 419 | 9.86k | } else { | 420 | 9.86k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 9.86k | } | 422 | 9.86k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 9.86k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 9.86k | return status; | 429 | 9.86k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 36 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 36 | Status status; | 415 | 36 | status._code = code; | 416 | 36 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 36 | if constexpr (sizeof...(args) == 0) { | 418 | 36 | status._err_msg->_msg = msg; | 419 | 36 | } else { | 420 | 36 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 36 | } | 422 | 36 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 36 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 36 | return status; | 429 | 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 | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
_ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 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_RiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 413 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 1 | Status status; | 415 | 1 | status._code = code; | 416 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 1 | if constexpr (sizeof...(args) == 0) { | 418 | 1 | status._err_msg->_msg = msg; | 419 | 1 | } else { | 420 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 1 | } | 422 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 1 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 1 | return status; | 429 | 1 | } |
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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 6 | return status; | 429 | 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: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 8 | Status status; | 415 | 8 | status._code = code; | 416 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 8 | if constexpr (sizeof...(args) == 0) { | 418 | 8 | status._err_msg->_msg = msg; | 419 | 8 | } else { | 420 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 8 | } | 422 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 8 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 8 | return status; | 429 | 8 | } |
_ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 166 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 166 | Status status; | 415 | 166 | status._code = code; | 416 | 166 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 166 | if constexpr (sizeof...(args) == 0) { | 418 | 166 | status._err_msg->_msg = msg; | 419 | 166 | } else { | 420 | 166 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 166 | } | 422 | 166 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 166 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 166 | status._err_msg->_stack = get_stack_trace(1); | 426 | 166 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 166 | } | 428 | 166 | return status; | 429 | 166 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 22 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 22 | Status status; | 415 | 22 | status._code = code; | 416 | 22 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 22 | if constexpr (sizeof...(args) == 0) { | 418 | 22 | status._err_msg->_msg = msg; | 419 | 22 | } else { | 420 | 22 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 22 | } | 422 | 22 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 22 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 22 | return status; | 429 | 22 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 6 | return status; | 429 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
_ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 939 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 939 | Status status; | 415 | 939 | status._code = code; | 416 | 939 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 939 | if constexpr (sizeof...(args) == 0) { | 418 | 939 | status._err_msg->_msg = msg; | 419 | 939 | } else { | 420 | 939 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 939 | } | 422 | 939 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 939 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 939 | return status; | 429 | 939 | } |
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 | 413 | 28 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 28 | Status status; | 415 | 28 | status._code = code; | 416 | 28 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 28 | if constexpr (sizeof...(args) == 0) { | 418 | 28 | status._err_msg->_msg = msg; | 419 | 28 | } else { | 420 | 28 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 28 | } | 422 | 28 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 28 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 28 | return status; | 429 | 28 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 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 | 413 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 6 | Status status; | 415 | 6 | status._code = code; | 416 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 6 | if constexpr (sizeof...(args) == 0) { | 418 | 6 | status._err_msg->_msg = msg; | 419 | 6 | } else { | 420 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 6 | } | 422 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 6 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 6 | return status; | 429 | 6 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKPKcRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 2 | status._err_msg->_stack = get_stack_trace(1); | 426 | 2 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 2 | } | 428 | 2 | return status; | 429 | 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 | 413 | 28 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 28 | Status status; | 415 | 28 | status._code = code; | 416 | 28 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 28 | if constexpr (sizeof...(args) == 0) { | 418 | 28 | status._err_msg->_msg = msg; | 419 | 28 | } else { | 420 | 28 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 28 | } | 422 | 28 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 28 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 28 | return status; | 429 | 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 | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 10 | Status status; | 415 | 10 | status._code = code; | 416 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 10 | if constexpr (sizeof...(args) == 0) { | 418 | 10 | status._err_msg->_msg = msg; | 419 | 10 | } else { | 420 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 10 | } | 422 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 10 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 10 | return status; | 429 | 10 | } |
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 | 413 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2 | Status status; | 415 | 2 | status._code = code; | 416 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2 | if constexpr (sizeof...(args) == 0) { | 418 | 2 | status._err_msg->_msg = msg; | 419 | 2 | } else { | 420 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2 | } | 422 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2 | return status; | 429 | 2 | } |
_ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 24 | Status status; | 415 | 24 | status._code = code; | 416 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 24 | if constexpr (sizeof...(args) == 0) { | 418 | 24 | status._err_msg->_msg = msg; | 419 | 24 | } else { | 420 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 24 | } | 422 | 24 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 24 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 24 | return status; | 429 | 24 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 4 | } |
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 | 413 | 57.5k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 57.5k | Status status; | 415 | 57.5k | status._code = code; | 416 | 57.5k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 57.5k | if constexpr (sizeof...(args) == 0) { | 418 | 57.5k | status._err_msg->_msg = msg; | 419 | 57.5k | } else { | 420 | 57.5k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 57.5k | } | 422 | 57.5k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 57.5k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 57.5k | return status; | 429 | 57.5k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ 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 | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 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_RiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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: _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 | 413 | 457k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 457k | Status status; | 415 | 457k | status._code = code; | 416 | 457k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 457k | if constexpr (sizeof...(args) == 0) { | 418 | 457k | status._err_msg->_msg = msg; | 419 | 457k | } else { | 420 | 457k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 457k | } | 422 | 457k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 457k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 457k | return status; | 429 | 457k | } |
_ZN5doris6Status5ErrorILi1ELb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Line | Count | Source | 413 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 4 | Status status; | 415 | 4 | status._code = code; | 416 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 4 | if constexpr (sizeof...(args) == 0) { | 418 | 4 | status._err_msg->_msg = msg; | 419 | 4 | } else { | 420 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 4 | } | 422 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 4 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 4 | return status; | 429 | 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_ _ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 196 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 196 | Status status; | 415 | 196 | status._code = code; | 416 | 196 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 196 | if constexpr (sizeof...(args) == 0) { | 418 | 196 | status._err_msg->_msg = msg; | 419 | 196 | } else { | 420 | 196 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 196 | } | 422 | 196 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 196 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 196 | return status; | 429 | 196 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Line | Count | Source | 413 | 88 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 88 | Status status; | 415 | 88 | status._code = code; | 416 | 88 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 88 | if constexpr (sizeof...(args) == 0) { | 418 | 88 | status._err_msg->_msg = msg; | 419 | 88 | } else { | 420 | 88 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 88 | } | 422 | 88 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 88 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 88 | return status; | 429 | 88 | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Line | Count | Source | 413 | 2.31k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 2.31k | Status status; | 415 | 2.31k | status._code = code; | 416 | 2.31k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 2.31k | if constexpr (sizeof...(args) == 0) { | 418 | 2.31k | status._err_msg->_msg = msg; | 419 | 2.31k | } else { | 420 | 2.31k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 2.31k | } | 422 | 2.31k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 2.31k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 2.31k | return status; | 429 | 2.31k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7311ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi100ELb0EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 382 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 382 | Status status; | 415 | 382 | status._code = code; | 416 | 382 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 382 | if constexpr (sizeof...(args) == 0) { | 418 | 382 | status._err_msg->_msg = msg; | 419 | 382 | } else { | 420 | 382 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 382 | } | 422 | 382 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 382 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 382 | return status; | 429 | 382 | } |
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 | 413 | 112 | Status static Error(std::string_view msg, Args&&... args) { | 414 | 112 | Status status; | 415 | 112 | status._code = code; | 416 | 112 | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 112 | if constexpr (sizeof...(args) == 0) { | 418 | 112 | status._err_msg->_msg = msg; | 419 | 112 | } else { | 420 | 112 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 112 | } | 422 | 112 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 112 | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 112 | status._err_msg->_stack = get_stack_trace(1); | 426 | 112 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 112 | } | 428 | 112 | return status; | 429 | 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 | 413 | 5.67k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 5.67k | Status status; | 415 | 5.67k | status._code = code; | 416 | 5.67k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 5.67k | if constexpr (sizeof...(args) == 0) { | 418 | 5.67k | status._err_msg->_msg = msg; | 419 | 5.67k | } else { | 420 | 5.67k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 5.67k | } | 422 | 5.67k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 5.67k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 5.67k | return status; | 429 | 5.67k | } |
_ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 413 | 32.7k | Status static Error(std::string_view msg, Args&&... args) { | 414 | 32.7k | Status status; | 415 | 32.7k | status._code = code; | 416 | 32.7k | status._err_msg = std::make_unique<ErrMsg>(); | 417 | 32.7k | if constexpr (sizeof...(args) == 0) { | 418 | 32.7k | status._err_msg->_msg = msg; | 419 | 32.7k | } else { | 420 | 32.7k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 421 | 32.7k | } | 422 | 32.7k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 423 | 32.7k | config::enable_stacktrace) { | 424 | | // Delete the first one frame pointers, which are inside the status.h | 425 | 0 | status._err_msg->_stack = get_stack_trace(1); | 426 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 427 | 0 | } | 428 | 32.7k | return status; | 429 | 32.7k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_16TWarmUpEventType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ |
430 | | |
431 | | template <bool stacktrace = true, typename... Args> |
432 | 2.38M | Status static Error(int code, std::string_view msg, Args&&... args) { |
433 | 2.38M | Status status; |
434 | 2.38M | status._code = code; |
435 | 2.38M | status._err_msg = std::make_unique<ErrMsg>(); |
436 | 2.38M | if constexpr (sizeof...(args) == 0) { |
437 | 0 | status._err_msg->_msg = msg; |
438 | 0 | } else { |
439 | 0 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
440 | 0 | } |
441 | 2.38M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
442 | 2.38M | config::enable_stacktrace) { |
443 | 770 | status._err_msg->_stack = get_stack_trace(1); |
444 | 770 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
445 | 770 | } |
446 | 2.38M | return status; |
447 | 2.38M | } _ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 432 | 231k | Status static Error(int code, std::string_view msg, Args&&... args) { | 433 | 231k | Status status; | 434 | 231k | status._code = code; | 435 | 231k | status._err_msg = std::make_unique<ErrMsg>(); | 436 | 231k | if constexpr (sizeof...(args) == 0) { | 437 | 231k | status._err_msg->_msg = msg; | 438 | 231k | } else { | 439 | 231k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 440 | 231k | } | 441 | 231k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 442 | 231k | config::enable_stacktrace) { | 443 | 0 | status._err_msg->_stack = get_stack_trace(1); | 444 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 445 | 0 | } | 446 | 231k | return status; | 447 | 231k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 432 | 2.15M | Status static Error(int code, std::string_view msg, Args&&... args) { | 433 | 2.15M | Status status; | 434 | 2.15M | status._code = code; | 435 | 2.15M | status._err_msg = std::make_unique<ErrMsg>(); | 436 | 2.15M | if constexpr (sizeof...(args) == 0) { | 437 | 2.14M | status._err_msg->_msg = msg; | 438 | 2.14M | } else { | 439 | 2.15M | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 440 | 2.15M | } | 441 | 2.15M | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 442 | 2.15M | config::enable_stacktrace) { | 443 | 770 | status._err_msg->_stack = get_stack_trace(1); | 444 | 770 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 445 | 770 | } | 446 | 2.15M | return status; | 447 | 2.15M | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
448 | | |
449 | 5.06G | static Status OK() { return {}; } |
450 | | |
451 | | // default have stacktrace. could disable manually. |
452 | | #define ERROR_CTOR(name, code) \ |
453 | | template <bool stacktrace = true, typename... Args> \ |
454 | 2.70M | static Status name(std::string_view msg, Args&&... args) { \ |
455 | 2.70M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
456 | 2.70M | } _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 8 | } |
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 151 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 151 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 151 | } |
_ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 4 | } |
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 | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
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 | 454 | 206 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 206 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 206 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 112 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 112 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 112 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
_ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
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 | 454 | 20 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 20 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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_ 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_ _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 27 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 27 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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_ _ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 607 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 607 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 607 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_ Line | Count | Source | 454 | 3 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 3 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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: _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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_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_ _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
_ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 2.70M | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2.70M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2.70M | } |
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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 2.48k | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2.48k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2.48k | } |
_ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
_ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 783 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 783 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 783 | } |
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 | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_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 | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 546 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 546 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 546 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
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 | 454 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_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 | 454 | 27 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 27 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RiEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 200 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 200 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 200 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ 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: _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_RiRmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
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 | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 2 | } |
_ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 166 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 166 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 166 | } |
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 | 454 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 6 | } |
_ZN5doris6Status13InternalErrorILb1EJRKPKcRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 454 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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 | 454 | 24 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 24 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 24 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ 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 | 454 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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_RiRmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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: _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_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 454 | 112 | static Status name(std::string_view msg, Args&&... args) { \ | 455 | 112 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 456 | 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_ |
457 | | |
458 | | // default have no stacktrace. could enable manually. |
459 | | #define ERROR_CTOR_NOSTACK(name, code) \ |
460 | | template <bool stacktrace = false, typename... Args> \ |
461 | 5.58M | static Status name(std::string_view msg, Args&&... args) { \ |
462 | 5.58M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
463 | 5.58M | } _ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 6.33k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 6.33k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 6.33k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 4.43k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4.43k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4.43k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRhEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 1 | } |
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 | 461 | 894k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 894k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 894k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 594 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 594 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 594 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 12 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 12 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 12 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 35 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 35 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 35 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 42 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 42 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 42 | } |
_ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
_ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 3.42M | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 3.42M | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 3.42M | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 48 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 48 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 48 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 106 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 106 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 106 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 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 | 461 | 325k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 325k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 325k | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 552 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 552 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 552 | } |
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 10 | } |
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 | 461 | 16 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 16 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 16 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 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 | 461 | 398k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 398k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 398k | } |
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 | 461 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 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_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_bbEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 12 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 12 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 12 | } |
_ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 294 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 294 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 294 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 48 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 48 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 48 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 15 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 15 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 9.86k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 9.86k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 9.86k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 36 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 36 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 36 | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4 | } |
_ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 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 | 461 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 6 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 8 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 8 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 8 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 22 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 22 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 22 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 6 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Line | Count | Source | 461 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 461 | 939 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 939 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 939 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 461 | 28 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 28 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 28 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT0_ Line | Count | Source | 461 | 28 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 28 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 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 | 461 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4 | } |
_ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 10 | } |
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 | 461 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 461 | 57.5k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 57.5k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 57.5k | } |
Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 461 | 457k | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 457k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 457k | } |
_ZN5doris6Status9CancelledILb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Line | Count | Source | 461 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 462 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 463 | 4 | } |
|
464 | | |
465 | | ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT) |
466 | | ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED) |
467 | | ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED) |
468 | | ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT) |
469 | | ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH) |
470 | | ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE) |
471 | | ERROR_CTOR(Corruption, CORRUPTION) |
472 | | ERROR_CTOR(IOError, IO_ERROR) |
473 | | ERROR_CTOR(NotFound, NOT_FOUND) |
474 | | ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST) |
475 | | ERROR_CTOR_NOSTACK(DirectoryNotEmpty, DIRECTORY_NOT_EMPTY) |
476 | | ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR) |
477 | | ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE) |
478 | | ERROR_CTOR(InternalError, INTERNAL_ERROR) |
479 | | ERROR_CTOR_NOSTACK(WaitForRf, PIP_WAIT_FOR_RF) |
480 | | ERROR_CTOR_NOSTACK(WaitForScannerContext, PIP_WAIT_FOR_SC) |
481 | | ERROR_CTOR(RuntimeError, RUNTIME_ERROR) |
482 | | ERROR_CTOR_NOSTACK(Cancelled, CANCELLED) |
483 | | ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED) |
484 | | ERROR_CTOR(RpcError, THRIFT_RPC_ERROR) |
485 | | ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT) |
486 | | ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS) |
487 | | ERROR_CTOR(Uninitialized, UNINITIALIZED) |
488 | | ERROR_CTOR(Aborted, ABORTED) |
489 | | ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR) |
490 | | ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED) |
491 | | ERROR_CTOR(HttpError, HTTP_ERROR) |
492 | | ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN) |
493 | | ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR) |
494 | | ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED) |
495 | | ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR) |
496 | | #undef ERROR_CTOR |
497 | | |
498 | | template <int code> |
499 | 93.2M | bool is() const { |
500 | 93.2M | return code == _code; |
501 | 93.2M | } Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv _ZNK5doris6Status2isILin3115EEEbv Line | Count | Source | 499 | 64 | bool is() const { | 500 | 64 | return code == _code; | 501 | 64 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv _ZNK5doris6Status2isILi31EEEbv Line | Count | Source | 499 | 1.45M | bool is() const { | 500 | 1.45M | return code == _code; | 501 | 1.45M | } |
_ZNK5doris6Status2isILi35EEEbv Line | Count | Source | 499 | 4 | bool is() const { | 500 | 4 | return code == _code; | 501 | 4 | } |
_ZNK5doris6Status2isILin7000EEEbv Line | Count | Source | 499 | 1.76M | bool is() const { | 500 | 1.76M | return code == _code; | 501 | 1.76M | } |
_ZNK5doris6Status2isILin7001EEEbv Line | Count | Source | 499 | 808k | bool is() const { | 500 | 808k | return code == _code; | 501 | 808k | } |
_ZNK5doris6Status2isILi5EEEbv Line | Count | Source | 499 | 283k | bool is() const { | 500 | 283k | return code == _code; | 501 | 283k | } |
_ZNK5doris6Status2isILin3002EEEbv Line | Count | Source | 499 | 36.9k | bool is() const { | 500 | 36.9k | return code == _code; | 501 | 36.9k | } |
_ZNK5doris6Status2isILi34EEEbv Line | Count | Source | 499 | 2 | bool is() const { | 500 | 2 | return code == _code; | 501 | 2 | } |
_ZNK5doris6Status2isILin406EEEbv Line | Count | Source | 499 | 296 | bool is() const { | 500 | 296 | return code == _code; | 501 | 296 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv _ZNK5doris6Status2isILi6EEEbv Line | Count | Source | 499 | 3 | bool is() const { | 500 | 3 | return code == _code; | 501 | 3 | } |
_ZNK5doris6Status2isILin908EEEbv Line | Count | Source | 499 | 2.46k | bool is() const { | 500 | 2.46k | return code == _code; | 501 | 2.46k | } |
_ZNK5doris6Status2isILin7002EEEbv Line | Count | Source | 499 | 2.58M | bool is() const { | 500 | 2.58M | return code == _code; | 501 | 2.58M | } |
_ZNK5doris6Status2isILi30EEEbv Line | Count | Source | 499 | 70.5M | bool is() const { | 500 | 70.5M | return code == _code; | 501 | 70.5M | } |
_ZNK5doris6Status2isILin2000EEEbv Line | Count | Source | 499 | 417k | bool is() const { | 500 | 417k | return code == _code; | 501 | 417k | } |
_ZNK5doris6Status2isILi32EEEbv Line | Count | Source | 499 | 5.65M | bool is() const { | 500 | 5.65M | return code == _code; | 501 | 5.65M | } |
_ZNK5doris6Status2isILin6004EEEbv Line | Count | Source | 499 | 892 | bool is() const { | 500 | 892 | return code == _code; | 501 | 892 | } |
_ZNK5doris6Status2isILi39EEEbv Line | Count | Source | 499 | 2.77M | bool is() const { | 500 | 2.77M | return code == _code; | 501 | 2.77M | } |
_ZNK5doris6Status2isILin2010EEEbv Line | Count | Source | 499 | 217k | bool is() const { | 500 | 217k | return code == _code; | 501 | 217k | } |
_ZNK5doris6Status2isILin808EEEbv Line | Count | Source | 499 | 215k | bool is() const { | 500 | 215k | return code == _code; | 501 | 215k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv _ZNK5doris6Status2isILin6003EEEbv Line | Count | Source | 499 | 17 | bool is() const { | 500 | 17 | return code == _code; | 501 | 17 | } |
_ZNK5doris6Status2isILi14EEEbv Line | Count | Source | 499 | 1.09k | bool is() const { | 500 | 1.09k | return code == _code; | 501 | 1.09k | } |
_ZNK5doris6Status2isILi46EEEbv Line | Count | Source | 499 | 3.71M | bool is() const { | 500 | 3.71M | return code == _code; | 501 | 3.71M | } |
_ZNK5doris6Status2isILi100EEEbv Line | Count | Source | 499 | 574 | bool is() const { | 500 | 574 | return code == _code; | 501 | 574 | } |
_ZNK5doris6Status2isILi42EEEbv Line | Count | Source | 499 | 783 | bool is() const { | 500 | 783 | return code == _code; | 501 | 783 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv _ZNK5doris6Status2isILi73EEEbv Line | Count | Source | 499 | 124 | bool is() const { | 500 | 124 | return code == _code; | 501 | 124 | } |
_ZNK5doris6Status2isILi8EEEbv Line | Count | Source | 499 | 2.70k | bool is() const { | 500 | 2.70k | return code == _code; | 501 | 2.70k | } |
_ZNK5doris6Status2isILi37EEEbv Line | Count | Source | 499 | 2.70k | bool is() const { | 500 | 2.70k | return code == _code; | 501 | 2.70k | } |
_ZNK5doris6Status2isILi9EEEbv Line | Count | Source | 499 | 2.70k | bool is() const { | 500 | 2.70k | return code == _code; | 501 | 2.70k | } |
_ZNK5doris6Status2isILin3120EEEbv Line | Count | Source | 499 | 2.42M | bool is() const { | 500 | 2.42M | return code == _code; | 501 | 2.42M | } |
_ZNK5doris6Status2isILin7311EEEbv Line | Count | Source | 499 | 262k | bool is() const { | 500 | 262k | return code == _code; | 501 | 262k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin215EEEbv |
502 | | |
503 | 0 | void set_code(int code) { _code = code; } |
504 | | |
505 | 5.09G | bool ok() const { return _code == ErrorCode::OK; } |
506 | | |
507 | | // Convert into TStatus. |
508 | | void to_thrift(TStatus* status) const; |
509 | | TStatus to_thrift() const; |
510 | | void to_protobuf(PStatus* status) const; |
511 | | |
512 | | std::string to_string() const; |
513 | | std::string to_string_no_stack() const; |
514 | | |
515 | | /// @return A json representation of this status. |
516 | | std::string to_json() const; |
517 | | |
518 | 275k | int code() const { return _code; } |
519 | | |
520 | | /// Clone this status and add the specified prefix to the message. |
521 | | /// |
522 | | /// If this status is OK, then an OK status will be returned. |
523 | | /// |
524 | | /// @param [in] msg |
525 | | /// The message to prepend. |
526 | | /// @return A ref to Status object |
527 | | Status& prepend(std::string_view msg); |
528 | | |
529 | | /// Add the specified suffix to the message. |
530 | | /// |
531 | | /// If this status is OK, then an OK status will be returned. |
532 | | /// |
533 | | /// @param [in] msg |
534 | | /// The message to append. |
535 | | /// @return A ref to Status object |
536 | | Status& append(std::string_view msg); |
537 | | |
538 | | // if(!status) or if (status) will use this operator |
539 | 247M | operator bool() const { return this->ok(); } |
540 | | |
541 | | // Used like if ASSERT_EQ(res, Status::OK()) |
542 | | // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state |
543 | | // ignore error messages during comparison |
544 | 87.2k | bool operator==(const Status& st) const { return _code == st._code; } |
545 | | |
546 | | // Used like if ASSERT_NE(res, Status::OK()) |
547 | 8.07M | bool operator!=(const Status& st) const { return _code != st._code; } |
548 | | |
549 | | friend std::ostream& operator<<(std::ostream& ostr, const Status& status); |
550 | | |
551 | 710k | std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); } |
552 | | |
553 | 0 | std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; } |
554 | | |
555 | | friend io::ObjectStorageStatus convert_to_obj_response(Status st); |
556 | | |
557 | | private: |
558 | | int _code; |
559 | | struct ErrMsg { |
560 | | std::string _msg; |
561 | | std::string _stack; |
562 | | }; |
563 | | std::unique_ptr<ErrMsg> _err_msg; |
564 | | |
565 | 594k | std::string code_as_string() const { |
566 | 594k | return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code)) |
567 | 594k | : fmt::format("E{}", (int16_t)_code); |
568 | 594k | } |
569 | | }; |
570 | | |
571 | | // There are many thread using status to indicate the cancel state, one thread may update it and |
572 | | // the other thread will read it. Status is not thread safe, for example, if one thread is update it |
573 | | // and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and |
574 | | // it is deconstructed during copy method. |
575 | | // And also we could not use lock, because we need get status frequently to check if it is cancelled. |
576 | | // The default value is ok. |
577 | | class AtomicStatus { |
578 | | public: |
579 | 3.45M | AtomicStatus() : error_st_(Status::OK()) {} |
580 | | |
581 | 279M | bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; } |
582 | | |
583 | 554k | bool update(const Status& new_status) { |
584 | | // If new status is normal, or the old status is abnormal, then not need update |
585 | 554k | if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) { |
586 | 456k | return false; |
587 | 456k | } |
588 | 97.9k | std::lock_guard l(mutex_); |
589 | 97.9k | if (error_code_.load(std::memory_order_acquire) != 0) { |
590 | 0 | return false; |
591 | 0 | } |
592 | 97.9k | error_st_ = new_status; |
593 | 97.9k | error_code_.store(new_status.code(), std::memory_order_release); |
594 | 97.9k | return true; |
595 | 97.9k | } |
596 | | |
597 | | // will copy a new status object to avoid concurrency |
598 | | // This stauts could only be called when ok==false |
599 | 8.68M | Status status() const { |
600 | 8.68M | std::lock_guard l(mutex_); |
601 | 8.68M | return error_st_; |
602 | 8.68M | } |
603 | | |
604 | | AtomicStatus(const AtomicStatus&) = delete; |
605 | | void operator=(const AtomicStatus&) = delete; |
606 | | |
607 | | private: |
608 | | std::atomic_int16_t error_code_ = 0; |
609 | | Status error_st_; |
610 | | // mutex's lock is not a const method, but we will use this mutex in |
611 | | // some const method, so that it should be mutable. |
612 | | mutable std::mutex mutex_; |
613 | | }; |
614 | | |
615 | 561k | inline std::ostream& operator<<(std::ostream& ostr, const Status& status) { |
616 | 561k | ostr << '[' << status.code_as_string() << ']'; |
617 | 561k | ostr << status.msg(); |
618 | 561k | if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) { |
619 | 3.72k | ostr << '\n' << status._err_msg->_stack; |
620 | 3.72k | } |
621 | 561k | return ostr; |
622 | 561k | } |
623 | | |
624 | 363k | inline std::string Status::to_string() const { |
625 | 363k | std::stringstream ss; |
626 | 363k | ss << *this; |
627 | 363k | return ss.str(); |
628 | 363k | } |
629 | | |
630 | 0 | inline std::string Status::to_string_no_stack() const { |
631 | 0 | return fmt::format("[{}]{}", code_as_string(), msg()); |
632 | 0 | } |
633 | | |
634 | | // some generally useful macros |
635 | | #define RETURN_IF_ERROR(stmt) \ |
636 | 3.94G | do { \ |
637 | 3.94G | Status _status_ = (stmt); \ olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_0clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_1clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_2clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_3clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_4clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_5clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_6clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_7clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_8clEv Line | Count | Source | 637 | 10 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK3$_9clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_10clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_11clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_12clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsEvENK4$_13clEv Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv Line | Count | Source | 637 | 8.75k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 637 | 596k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Line | Count | Source | 637 | 461k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Line | Count | Source | 637 | 461k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_ Line | Count | Source | 637 | 372k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_ Line | Count | Source | 637 | 92.3k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Line | Count | Source | 637 | 352k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_ Line | Count | Source | 637 | 310k | Status _status_ = (stmt); \ |
hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_ Line | Count | Source | 637 | 70.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 | 637 | 5.82M | Status _status_ = (stmt); \ |
group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueElllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEv Line | Count | Source | 637 | 480 | 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 | 637 | 432 | Status _status_ = (stmt); \ |
load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv Line | Count | Source | 637 | 20 | Status _status_ = (stmt); \ |
result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv Line | Count | Source | 637 | 8 | Status _status_ = (stmt); \ |
data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv Line | Count | Source | 637 | 443 | Status _status_ = (stmt); \ |
multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 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 | 637 | 166 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 2.68k | 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 | 637 | 106 | Status _status_ = (stmt); \ |
stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 2.37k | Status _status_ = (stmt); \ |
tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjSaIjEESt4hashIlESt8equal_toIlESaISt4pairIKlS7_EEEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE Line | Count | Source | 637 | 192k | Status _status_ = (stmt); \ |
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv Line | Count | Source | 637 | 11.8k | Status _status_ = (stmt); \ |
rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv Line | Count | Source | 637 | 7.64k | Status _status_ = (stmt); \ |
http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 268 | Status _status_ = (stmt); \ |
stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 2.66k | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 637 | 256 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 256 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev Line | Count | Source | 637 | 714 | Status _status_ = (stmt); \ |
csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 9.11k | Status _status_ = (stmt); \ |
Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader19_check_array_formatERSt6vectorINS_5SliceESaIS3_EEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader19_check_array_formatERSt6vectorINS_5SliceESaIS3_EEPbENK3$_1clB5cxx11Ev new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev Line | Count | Source | 637 | 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 | 637 | 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 | 637 | 4 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 4 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev Line | Count | Source | 637 | 372 | Status _status_ = (stmt); \ |
new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 124 | Status _status_ = (stmt); \ |
_ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorImSaImEEmmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_ Line | Count | Source | 637 | 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 | 637 | 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 | 637 | 304 | 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 | 637 | 36 | Status _status_ = (stmt); \ |
spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv Line | Count | Source | 637 | 8 | Status _status_ = (stmt); \ |
async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv Line | Count | Source | 637 | 283k | Status _status_ = (stmt); \ |
autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv Line | Count | Source | 637 | 372 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 292 | Status _status_ = (stmt); \ |
vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 38 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev Line | Count | Source | 637 | 822 | Status _status_ = (stmt); \ |
vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 822 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_ Line | Count | Source | 637 | 41.0k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_ Line | Count | Source | 637 | 1.08k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_ Line | Count | Source | 637 | 716k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_ Line | Count | Source | 637 | 895k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_ Line | Count | Source | 637 | 94.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 | 637 | 140 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_ Line | Count | Source | 637 | 3.17k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_ Line | Count | Source | 637 | 3.10M | 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 | 637 | 620 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_ Line | Count | Source | 637 | 97.7k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_ Line | Count | Source | 637 | 400 | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_ Line | Count | Source | 637 | 33.1k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_ Line | Count | Source | 637 | 1.22k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_ Line | Count | Source | 637 | 41.6k | 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 | 637 | 9.51k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_ Line | Count | Source | 637 | 4.00k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_ Line | Count | Source | 637 | 9.54k | Status _status_ = (stmt); \ |
olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_ Line | Count | Source | 637 | 7.83k | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev Line | Count | Source | 637 | 776 | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev Line | Count | Source | 637 | 776 | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev Line | Count | Source | 637 | 1.15k | Status _status_ = (stmt); \ |
vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev Line | Count | Source | 637 | 1.15k | Status _status_ = (stmt); \ |
vmeta_scanner.cpp:_ZZN5doris10vectorized12VMetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 12.7k | Status _status_ = (stmt); \ |
schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv Line | Count | Source | 637 | 115k | 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 | 637 | 18.0k | Status _status_ = (stmt); \ |
schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 3.62k | Status _status_ = (stmt); \ |
schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 50 | Status _status_ = (stmt); \ |
schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 6 | Status _status_ = (stmt); \ |
schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 14 | Status _status_ = (stmt); \ |
schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 690 | Status _status_ = (stmt); \ |
schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 24 | Status _status_ = (stmt); \ |
schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Line | Count | Source | 637 | 1.08k | 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 | 637 | 138 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 637 | 594 | 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 | 637 | 288 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Line | Count | Source | 637 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 637 | 42 | 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 | 637 | 48 | 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 | 637 | 348 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS0_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Line | Count | Source | 637 | 84 | 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 | 637 | 204 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Line | Count | Source | 637 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISG_NS0_19RowRefListWithFlagsE9HashCRC32ISG_E16HashTableNoStateEESK_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Line | Count | Source | 637 | 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 | 637 | 48 | 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 | 637 | 366 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 637 | 162 | 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 | 637 | 432 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Line | Count | Source | 637 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 637 | 60 | 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 | 637 | 216 | 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 | 637 | 582 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheINS_12HashMapTableINS_9StringRefENS_11HashMapCellISF_NS0_19RowRefListWithFlagsE11DefaultHashISF_vE16HashTableNoStateEESJ_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusESA_ Line | Count | Source | 637 | 96 | 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 | 637 | 192 | 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 | 637 | 534 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusESA_ Line | Count | Source | 637 | 12 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableIN4wide7integerILm128EjEENS_11HashMapCellISH_NS0_19RowRefListWithFlagsE9HashCRC32ISH_E16HashTableNoStateEESL_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusESA_ Line | Count | Source | 637 | 84 | 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 | 637 | 216 | 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 | 637 | 23.2k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIh9PHHashMapIhPc11DefaultHashIhvELb0EEEEEENS_6StatusERT_ Line | Count | Source | 637 | 210 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIt9PHHashMapItPc11DefaultHashItvELb0EEEEEENS_6StatusERT_ Line | Count | Source | 637 | 364 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjELb0EEEEEENS_6StatusERT_ Line | Count | Source | 637 | 34.9k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImELb0EEEEEENS_6StatusERT_ Line | Count | Source | 637 | 22.8k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_19MethodStringNoCacheINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusERT_ Line | Count | Source | 637 | 4.00k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISA_Pc9HashCRC32ISA_ELb0EEEEEENS_6StatusERT_ Line | Count | Source | 637 | 28 | 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 | 637 | 4.20k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberItNS2_15DataWithNullKeyI9PHHashMapItPc11DefaultHashItvELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 637 | 3.06k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 637 | 10.1k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImELb0EEEEEEEEEENS_6StatusERT_ Line | Count | Source | 637 | 16.3k | 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 | 637 | 15.5k | 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 | 637 | 4.32k | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb0EEEEENS_6StatusERT_ Line | Count | Source | 637 | 978 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 637 | 112 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32ISB_ELb0EELb0EEEEENS_6StatusERT_ Line | Count | Source | 637 | 98 | Status _status_ = (stmt); \ |
streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32ISB_ELb0EELb1EEEEENS_6StatusERT_ Line | Count | Source | 637 | 3.45k | 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 | 637 | 1.37k | 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 | 637 | 9.47k | 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 | 637 | 1.53k | 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 | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_1clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_2clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_3clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_4clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_5clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsEvENK3$_6clEv Line | Count | Source | 637 | 2 | Status _status_ = (stmt); \ |
|
638 | 3.94G | if (UNLIKELY(!_status_.ok())) { \ |
639 | 533k | return _status_; \ |
640 | 533k | } \ |
641 | 3.94G | } while (false) |
642 | | |
643 | | #define PROPAGATE_FALSE(stmt) \ |
644 | 13.4M | do { \ |
645 | 13.4M | if (UNLIKELY(!static_cast<bool>(stmt))) { \ |
646 | 412 | return false; \ |
647 | 412 | } \ |
648 | 13.4M | } while (false) |
649 | | |
650 | | #define THROW_IF_ERROR(stmt) \ |
651 | 1.23M | do { \ |
652 | 1.23M | Status _status_ = (stmt); \ |
653 | 1.23M | if (UNLIKELY(!_status_.ok())) { \ |
654 | 3 | throw Exception(_status_); \ |
655 | 3 | } \ |
656 | 1.23M | } while (false) |
657 | | |
658 | | #define RETURN_IF_STATUS_ERROR(status, stmt) \ |
659 | | do { \ |
660 | | status = (stmt); \ |
661 | | if (UNLIKELY(!status.ok())) { \ |
662 | | return; \ |
663 | | } \ |
664 | | } while (false) |
665 | | |
666 | | #define EXIT_IF_ERROR(stmt) \ |
667 | 8 | do { \ |
668 | 8 | Status _status_ = (stmt); \ |
669 | 8 | if (UNLIKELY(!_status_.ok())) { \ |
670 | 0 | LOG(ERROR) << _status_; \ |
671 | 0 | exit(1); \ |
672 | 0 | } \ |
673 | 8 | } while (false) |
674 | | |
675 | | #define RETURN_FALSE_IF_ERROR(stmt) \ |
676 | 32.5M | do { \ |
677 | 32.5M | Status status = (stmt); \ |
678 | 32.5M | if (UNLIKELY(!status.ok())) { \ |
679 | 1 | return false; \ |
680 | 1 | } \ |
681 | 32.5M | } while (false) |
682 | | |
683 | | /// @brief Emit a warning if @c to_call returns a bad status. |
684 | | #define WARN_IF_ERROR(to_call, warning_prefix) \ |
685 | 732k | do { \ |
686 | 732k | Status _s = (to_call); \ |
687 | 732k | if (UNLIKELY(!_s.ok())) { \ |
688 | 66 | LOG(WARNING) << (warning_prefix) << ": " << _s; \ |
689 | 66 | } \ |
690 | 732k | } while (false); |
691 | | |
692 | | #define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix) \ |
693 | 8.10M | do { \ |
694 | 8.10M | Status _s = (stmt); \ |
695 | 8.10M | if (UNLIKELY(!_s.ok())) { \ |
696 | 0 | LOG(WARNING) << (warning_prefix) << ", error: " << _s; \ |
697 | 0 | return _s; \ |
698 | 0 | } \ |
699 | 8.10M | } while (false); |
700 | | |
701 | | template <typename T> |
702 | | using Result = expected<T, Status>; |
703 | | |
704 | | using ResultError = unexpected<Status>; |
705 | | |
706 | | #define RETURN_IF_ERROR_RESULT(stmt) \ |
707 | 994k | do { \ |
708 | 994k | Status _status_ = (stmt); \ |
709 | 994k | if (UNLIKELY(!_status_.ok())) { \ |
710 | 24 | return unexpected(std::move(_status_)); \ |
711 | 24 | } \ |
712 | 994k | } while (false) |
713 | | |
714 | | #define DORIS_TRY(stmt) \ |
715 | 30.0M | ({ \ |
716 | 30.0M | auto&& res = (stmt); \ |
717 | 30.0M | using T = std::decay_t<decltype(res)>; \ |
718 | 30.0M | if (!res.has_value()) [[unlikely]] { \ |
719 | 2.70M | return std::forward<T>(res).error(); \ |
720 | 2.70M | } \ |
721 | 30.0M | std::forward<T>(res).value(); \ |
722 | 27.3M | }); |
723 | | |
724 | | } // namespace doris |
725 | | |
726 | | // specify formatter for Status |
727 | | template <> |
728 | | struct fmt::formatter<doris::Status> { |
729 | | template <typename ParseContext> |
730 | 96 | constexpr auto parse(ParseContext& ctx) { |
731 | 96 | return ctx.begin(); |
732 | 96 | } |
733 | | |
734 | | template <typename FormatContext> |
735 | 96 | auto format(doris::Status const& status, FormatContext& ctx) { |
736 | 96 | return fmt::format_to(ctx.out(), "{}", status.to_string()); |
737 | 96 | } |
738 | | }; |