/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 | 1 | TStatusError(PUBLISH_TIMEOUT, false); \ |
41 | 1 | TStatusError(MEM_ALLOC_FAILED, true); \ |
42 | 1 | TStatusError(BUFFER_ALLOCATION_FAILED, true); \ |
43 | 1 | TStatusError(INVALID_ARGUMENT, false); \ |
44 | 1 | TStatusError(INVALID_JSON_PATH, false); \ |
45 | 1 | TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true); \ |
46 | 1 | TStatusError(CORRUPTION, true); \ |
47 | 1 | TStatusError(IO_ERROR, true); \ |
48 | 1 | TStatusError(NOT_FOUND, true); \ |
49 | 1 | TStatusError(ALREADY_EXIST, true); \ |
50 | 1 | TStatusError(NOT_IMPLEMENTED_ERROR, false); \ |
51 | 1 | TStatusError(END_OF_FILE, false); \ |
52 | 1 | TStatusError(INTERNAL_ERROR, true); \ |
53 | 1 | TStatusError(RUNTIME_ERROR, true); \ |
54 | 1 | TStatusError(CANCELLED, false); \ |
55 | 1 | TStatusError(ANALYSIS_ERROR, false); \ |
56 | 1 | TStatusError(MEM_LIMIT_EXCEEDED, false); \ |
57 | 1 | TStatusError(THRIFT_RPC_ERROR, true); \ |
58 | 1 | TStatusError(TIMEOUT, true); \ |
59 | 1 | TStatusError(LIMIT_REACH, false); \ |
60 | 1 | TStatusError(TOO_MANY_TASKS, true); \ |
61 | 1 | TStatusError(UNINITIALIZED, false); \ |
62 | 1 | TStatusError(INCOMPLETE, false); \ |
63 | 1 | TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \ |
64 | 1 | TStatusError(ABORTED, false); \ |
65 | 1 | TStatusError(DATA_QUALITY_ERROR, false); \ |
66 | 1 | TStatusError(LABEL_ALREADY_EXISTS, true); \ |
67 | 1 | TStatusError(NOT_AUTHORIZED, true); \ |
68 | 1 | TStatusError(BINLOG_DISABLE, false); \ |
69 | 1 | TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false); \ |
70 | 1 | TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false); \ |
71 | 1 | TStatusError(BINLOG_NOT_FOUND_DB, false); \ |
72 | 1 | TStatusError(BINLOG_NOT_FOUND_TABLE, false); \ |
73 | 1 | TStatusError(NETWORK_ERROR, false); \ |
74 | 1 | TStatusError(ILLEGAL_STATE, false); \ |
75 | 1 | TStatusError(SNAPSHOT_NOT_EXIST, true); \ |
76 | 1 | TStatusError(HTTP_ERROR, true); \ |
77 | 1 | TStatusError(TABLET_MISSING, true); \ |
78 | 1 | TStatusError(NOT_MASTER, true); \ |
79 | 1 | TStatusError(OBTAIN_LOCK_FAILED, false); \ |
80 | 1 | TStatusError(SNAPSHOT_EXPIRED, false); \ |
81 | 1 | TStatusError(DELETE_BITMAP_LOCK_ERROR, false); |
82 | | // E error_name, error_code, print_stacktrace |
83 | | #define APPLY_FOR_OLAP_ERROR_CODES(E) \ |
84 | 1 | E(OK, 0, false); \ |
85 | 1 | E(CALL_SEQUENCE_ERROR, -202, true); \ |
86 | 1 | E(BUFFER_OVERFLOW, -204, true); \ |
87 | 1 | E(CONFIG_ERROR, -205, true); \ |
88 | 1 | E(INIT_FAILED, -206, true); \ |
89 | 1 | E(INVALID_SCHEMA, -207, true); \ |
90 | 1 | E(CHECKSUM_ERROR, -208, true); \ |
91 | 1 | E(SIGNATURE_ERROR, -209, true); \ |
92 | 1 | E(CATCH_EXCEPTION, -210, true); \ |
93 | 1 | E(PARSE_PROTOBUF_ERROR, -211, true); \ |
94 | 1 | E(SERIALIZE_PROTOBUF_ERROR, -212, true); \ |
95 | 1 | E(WRITE_PROTOBUF_ERROR, -213, true); \ |
96 | 1 | E(VERSION_NOT_EXIST, -214, false); \ |
97 | 1 | E(TABLE_NOT_FOUND, -215, true); \ |
98 | 1 | E(TRY_LOCK_FAILED, -216, false); \ |
99 | 1 | E(EXCEEDED_LIMIT, -217, false); \ |
100 | 1 | E(OUT_OF_BOUND, -218, false); \ |
101 | 1 | E(INVALID_ROOT_PATH, -222, true); \ |
102 | 1 | E(NO_AVAILABLE_ROOT_PATH, -223, true); \ |
103 | 1 | E(CHECK_LINES_ERROR, -224, true); \ |
104 | 1 | E(INVALID_CLUSTER_INFO, -225, true); \ |
105 | 1 | E(TRANSACTION_NOT_EXIST, -226, false); \ |
106 | 1 | E(DISK_FAILURE, -227, true); \ |
107 | 1 | E(TRANSACTION_ALREADY_COMMITTED, -228, false); \ |
108 | 1 | E(TRANSACTION_ALREADY_VISIBLE, -229, false); \ |
109 | 1 | E(VERSION_ALREADY_MERGED, -230, true); \ |
110 | 1 | E(LZO_DISABLED, -231, true); \ |
111 | 1 | E(DISK_REACH_CAPACITY_LIMIT, -232, true); \ |
112 | 1 | E(TOO_MANY_TRANSACTIONS, -233, false); \ |
113 | 1 | E(INVALID_SNAPSHOT_VERSION, -234, true); \ |
114 | 1 | E(TOO_MANY_VERSION, -235, false); \ |
115 | 1 | E(NOT_INITIALIZED, -236, true); \ |
116 | 1 | E(ALREADY_CANCELLED, -237, false); \ |
117 | 1 | E(TOO_MANY_SEGMENTS, -238, false); \ |
118 | 1 | E(ALREADY_CLOSED, -239, false); \ |
119 | 1 | E(SERVICE_UNAVAILABLE, -240, true); \ |
120 | 1 | E(NEED_SEND_AGAIN, -241, false); \ |
121 | 1 | E(OS_ERROR, -242, true); \ |
122 | 1 | E(DIR_NOT_EXIST, -243, true); \ |
123 | 1 | E(CREATE_FILE_ERROR, -245, true); \ |
124 | 1 | E(STL_ERROR, -246, true); \ |
125 | 1 | E(MUTEX_ERROR, -247, true); \ |
126 | 1 | E(PTHREAD_ERROR, -248, true); \ |
127 | 1 | E(UB_FUNC_ERROR, -250, true); \ |
128 | 1 | E(COMPRESS_ERROR, -251, true); \ |
129 | 1 | E(DECOMPRESS_ERROR, -252, true); \ |
130 | 1 | E(FILE_ALREADY_EXIST, -253, true); \ |
131 | 1 | E(BAD_CAST, -254, true); \ |
132 | 1 | E(ARITHMETIC_OVERFLOW_ERRROR, -255, false); \ |
133 | 1 | E(PERMISSION_DENIED, -256, false); \ |
134 | 1 | E(QUERY_MEMORY_EXCEEDED, -257, false); \ |
135 | 1 | E(WORKLOAD_GROUP_MEMORY_EXCEEDED, -258, false); \ |
136 | 1 | E(PROCESS_MEMORY_EXCEEDED, -259, false); \ |
137 | 1 | E(CE_CMD_PARAMS_ERROR, -300, true); \ |
138 | 1 | E(CE_BUFFER_TOO_SMALL, -301, true); \ |
139 | 1 | E(CE_CMD_NOT_VALID, -302, true); \ |
140 | 1 | E(CE_LOAD_TABLE_ERROR, -303, true); \ |
141 | 1 | E(CE_NOT_FINISHED, -304, true); \ |
142 | 1 | E(CE_TABLET_ID_EXIST, -305, true); \ |
143 | 1 | E(TABLE_VERSION_DUPLICATE_ERROR, -400, true); \ |
144 | 1 | E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true); \ |
145 | 1 | E(TABLE_INDEX_VALIDATE_ERROR, -402, true); \ |
146 | 1 | E(TABLE_INDEX_FIND_ERROR, -403, true); \ |
147 | 1 | E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true); \ |
148 | 1 | E(TABLE_CREATE_META_ERROR, -405, true); \ |
149 | 1 | E(TABLE_ALREADY_DELETED_ERROR, -406, false); \ |
150 | 1 | E(ENGINE_INSERT_EXISTS_TABLE, -500, true); \ |
151 | 1 | E(ENGINE_DROP_NOEXISTS_TABLE, -501, true); \ |
152 | 1 | E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true); \ |
153 | 1 | E(TABLE_INSERT_DUPLICATION_ERROR, -503, true); \ |
154 | 1 | E(DELETE_VERSION_ERROR, -504, true); \ |
155 | 1 | E(GC_SCAN_PATH_ERROR, -505, true); \ |
156 | 1 | E(ENGINE_INSERT_OLD_TABLET, -506, true); \ |
157 | 1 | E(FETCH_OTHER_ERROR, -600, true); \ |
158 | 1 | E(FETCH_TABLE_NOT_EXIST, -601, true); \ |
159 | 1 | E(FETCH_VERSION_ERROR, -602, true); \ |
160 | 1 | E(FETCH_SCHEMA_ERROR, -603, true); \ |
161 | 1 | E(FETCH_COMPRESSION_ERROR, -604, true); \ |
162 | 1 | E(FETCH_CONTEXT_NOT_EXIST, -605, true); \ |
163 | 1 | E(FETCH_GET_READER_PARAMS_ERR, -606, true); \ |
164 | 1 | E(FETCH_SAVE_SESSION_ERR, -607, true); \ |
165 | 1 | E(FETCH_MEMORY_EXCEEDED, -608, true); \ |
166 | 1 | E(READER_IS_UNINITIALIZED, -700, true); \ |
167 | 1 | E(READER_GET_ITERATOR_ERROR, -701, true); \ |
168 | 1 | E(CAPTURE_ROWSET_READER_ERROR, -702, true); \ |
169 | 1 | E(READER_READING_ERROR, -703, true); \ |
170 | 1 | E(READER_INITIALIZE_ERROR, -704, true); \ |
171 | 1 | E(BE_VERSION_NOT_MATCH, -800, true); \ |
172 | 1 | E(BE_REPLACE_VERSIONS_ERROR, -801, true); \ |
173 | 1 | E(BE_MERGE_ERROR, -802, true); \ |
174 | 1 | E(CAPTURE_ROWSET_ERROR, -804, true); \ |
175 | 1 | E(BE_SAVE_HEADER_ERROR, -805, true); \ |
176 | 1 | E(BE_INIT_OLAP_DATA, -806, true); \ |
177 | 1 | E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true); \ |
178 | 1 | E(BE_NO_SUITABLE_VERSION, -808, false); \ |
179 | 1 | E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true); \ |
180 | 1 | E(BE_ERROR_DELETE_ACTION, -811, true); \ |
181 | 1 | E(BE_SEGMENTS_OVERLAPPING, -812, true); \ |
182 | 1 | E(PUSH_INIT_ERROR, -900, true); \ |
183 | 1 | E(PUSH_VERSION_INCORRECT, -902, true); \ |
184 | 1 | E(PUSH_SCHEMA_MISMATCH, -903, true); \ |
185 | 1 | E(PUSH_CHECKSUM_ERROR, -904, true); \ |
186 | 1 | E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true); \ |
187 | 1 | E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true); \ |
188 | 1 | E(PUSH_BUILD_DELTA_ERROR, -907, true); \ |
189 | 1 | E(PUSH_VERSION_ALREADY_EXIST, -908, false); \ |
190 | 1 | E(PUSH_TABLE_NOT_EXIST, -909, true); \ |
191 | 1 | E(PUSH_INPUT_DATA_ERROR, -910, true); \ |
192 | 1 | E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false); \ |
193 | 1 | E(PUSH_BATCH_PROCESS_REMOVED, -912, true); \ |
194 | 1 | E(PUSH_COMMIT_ROWSET, -913, true); \ |
195 | 1 | E(PUSH_ROWSET_NOT_FOUND, -914, true); \ |
196 | 1 | E(INDEX_LOAD_ERROR, -1000, true); \ |
197 | 1 | E(INDEX_CHECKSUM_ERROR, -1002, true); \ |
198 | 1 | E(INDEX_DELTA_PRUNING, -1003, true); \ |
199 | 1 | E(DATA_ROW_BLOCK_ERROR, -1100, true); \ |
200 | 1 | E(DATA_FILE_TYPE_ERROR, -1101, true); \ |
201 | 1 | E(WRITER_INDEX_WRITE_ERROR, -1200, true); \ |
202 | 1 | E(WRITER_DATA_WRITE_ERROR, -1201, true); \ |
203 | 1 | E(WRITER_ROW_BLOCK_ERROR, -1202, true); \ |
204 | 1 | E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true); \ |
205 | 1 | E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true); \ |
206 | 1 | E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true); \ |
207 | 1 | E(HEADER_ADD_VERSION, -1400, true); \ |
208 | 1 | E(HEADER_DELETE_VERSION, -1401, true); \ |
209 | 1 | E(HEADER_ADD_PENDING_DELTA, -1402, true); \ |
210 | 1 | E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true); \ |
211 | 1 | E(HEADER_INVALID_FLAG, -1404, true); \ |
212 | 1 | E(HEADER_LOAD_INVALID_KEY, -1408, true); \ |
213 | 1 | E(HEADER_LOAD_JSON_HEADER, -1410, true); \ |
214 | 1 | E(HEADER_INIT_FAILED, -1411, true); \ |
215 | 1 | E(HEADER_PB_PARSE_FAILED, -1412, true); \ |
216 | 1 | E(HEADER_HAS_PENDING_DATA, -1413, true); \ |
217 | 1 | E(SCHEMA_SCHEMA_INVALID, -1500, true); \ |
218 | 1 | E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true); \ |
219 | 1 | E(ALTER_MULTI_TABLE_ERR, -1600, true); \ |
220 | 1 | E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true); \ |
221 | 1 | E(ALTER_STATUS_ERR, -1602, true); \ |
222 | 1 | E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true); \ |
223 | 1 | E(SCHEMA_CHANGE_INFO_INVALID, -1604, true); \ |
224 | 1 | E(QUERY_SPLIT_KEY_ERR, -1605, true); \ |
225 | 1 | E(DATA_QUALITY_ERR, -1606, false); \ |
226 | 1 | E(COLUMN_DATA_LOAD_BLOCK, -1700, true); \ |
227 | 1 | E(COLUMN_DATA_RECORD_INDEX, -1701, true); \ |
228 | 1 | E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true); \ |
229 | 1 | E(COLUMN_DATA_READ_VAR_INT, -1703, true); \ |
230 | 1 | E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true); \ |
231 | 1 | E(COLUMN_READ_STREAM, -1706, true); \ |
232 | 1 | E(COLUMN_STREAM_NOT_EXIST, -1716, true); \ |
233 | 1 | E(COLUMN_VALUE_NULL, -1717, true); \ |
234 | 1 | E(COLUMN_SEEK_ERROR, -1719, true); \ |
235 | 1 | E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true); \ |
236 | 1 | E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true); \ |
237 | 1 | E(DELETE_INVALID_CONDITION, -1900, true); \ |
238 | 1 | E(DELETE_UPDATE_HEADER_FAILED, -1901, true); \ |
239 | 1 | E(DELETE_SAVE_HEADER_FAILED, -1902, true); \ |
240 | 1 | E(DELETE_INVALID_PARAMETERS, -1903, true); \ |
241 | 1 | E(DELETE_INVALID_VERSION, -1904, true); \ |
242 | 1 | E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false); \ |
243 | 1 | E(CUMULATIVE_REPEAT_INIT, -2001, true); \ |
244 | 1 | E(CUMULATIVE_INVALID_PARAMETERS, -2002, true); \ |
245 | 1 | E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true); \ |
246 | 1 | E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \ |
247 | 1 | E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true); \ |
248 | 1 | E(CUMULATIVE_MISS_VERSION, -2006, true); \ |
249 | 1 | E(FULL_NO_SUITABLE_VERSION, -2008, false); \ |
250 | 1 | E(FULL_MISS_VERSION, -2009, true); \ |
251 | 1 | E(META_INVALID_ARGUMENT, -3000, true); \ |
252 | 1 | E(META_OPEN_DB_ERROR, -3001, true); \ |
253 | 1 | E(META_KEY_NOT_FOUND, -3002, false); \ |
254 | 1 | E(META_GET_ERROR, -3003, true); \ |
255 | 1 | E(META_PUT_ERROR, -3004, true); \ |
256 | 1 | E(META_ITERATOR_ERROR, -3005, true); \ |
257 | 1 | E(META_DELETE_ERROR, -3006, true); \ |
258 | 1 | E(META_ALREADY_EXIST, -3007, true); \ |
259 | 1 | E(ROWSET_WRITER_INIT, -3100, true); \ |
260 | 1 | E(ROWSET_SAVE_FAILED, -3101, true); \ |
261 | 1 | E(ROWSET_GENERATE_ID_FAILED, -3102, true); \ |
262 | 1 | E(ROWSET_DELETE_FILE_FAILED, -3103, true); \ |
263 | 1 | E(ROWSET_BUILDER_INIT, -3104, true); \ |
264 | 1 | E(ROWSET_TYPE_NOT_FOUND, -3105, true); \ |
265 | 1 | E(ROWSET_ALREADY_EXIST, -3106, true); \ |
266 | 1 | E(ROWSET_CREATE_READER, -3107, true); \ |
267 | 1 | E(ROWSET_INVALID, -3108, true); \ |
268 | 1 | E(ROWSET_READER_INIT, -3110, true); \ |
269 | 1 | E(ROWSET_INVALID_STATE_TRANSITION, -3112, true); \ |
270 | 1 | E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true); \ |
271 | 1 | E(ROWSET_ADD_MIGRATION_V2, -3114, true); \ |
272 | 1 | E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false); \ |
273 | 1 | E(ROWSET_RENAME_FILE_FAILED, -3116, false); \ |
274 | 1 | E(SEGCOMPACTION_INIT_READER, -3117, false); \ |
275 | 1 | E(SEGCOMPACTION_INIT_WRITER, -3118, false); \ |
276 | 1 | E(SEGCOMPACTION_FAILED, -3119, false); \ |
277 | 1 | E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true); \ |
278 | 1 | E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true); \ |
279 | 1 | E(INVERTED_INDEX_INVALID_PARAMETERS, -6000, false); \ |
280 | 1 | E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false); \ |
281 | 1 | E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false); \ |
282 | 1 | E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false); \ |
283 | 1 | E(INVERTED_INDEX_BYPASS, -6004, false); \ |
284 | 1 | E(INVERTED_INDEX_NO_TERMS, -6005, false); \ |
285 | 1 | E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true); \ |
286 | 1 | E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false); \ |
287 | 1 | E(INVERTED_INDEX_BUILD_WAITTING, -6008, false); \ |
288 | 1 | E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false); \ |
289 | 1 | E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false); \ |
290 | 1 | E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false); \ |
291 | 1 | E(INVERTED_INDEX_FILE_CORRUPTED, -6012, false); \ |
292 | 1 | E(KEY_NOT_FOUND, -7000, false); \ |
293 | 1 | E(KEY_ALREADY_EXISTS, -7001, false); \ |
294 | 1 | E(ENTRY_NOT_FOUND, -7002, false); \ |
295 | 1 | E(INVALID_TABLET_STATE, -7211, false); \ |
296 | 1 | E(ROWSETS_EXPIRED, -7311, false); \ |
297 | 1 | E(CGROUP_ERROR, -7411, false); \ |
298 | 1 | E(FATAL_ERROR, -7412, 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 | 1 | ErrorCodeInitializer(int temp) : signal_value(temp) { |
322 | 65.5k | for (auto& error_state : error_states) { |
323 | 65.5k | error_state.error_code = 0; |
324 | 65.5k | } |
325 | 1 | #define M(NAME, ENABLESTACKTRACE) \ |
326 | 42 | error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \ |
327 | 42 | error_states[TStatusCode::NAME].description = #NAME; \ |
328 | 42 | error_states[TStatusCode::NAME].error_code = TStatusCode::NAME; |
329 | 42 | APPLY_FOR_THRIFT_ERROR_CODES(M) |
330 | 1 | #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 | 1 | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) \ |
339 | 215 | assert(error_states[abs(ERRORCODE)].error_code == 0); \ |
340 | 215 | error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \ |
341 | 215 | error_states[abs(ERRORCODE)].error_code = ERRORCODE; |
342 | 215 | APPLY_FOR_OLAP_ERROR_CODES(M) |
343 | 1 | #undef M |
344 | 1 | } |
345 | | |
346 | 1 | 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 | 1 | if (signal_value == 0) { |
350 | 0 | exit(-1); |
351 | 0 | } |
352 | 1 | } |
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 | 343M | Status() : _code(ErrorCode::OK), _err_msg(nullptr) {} |
364 | | |
365 | | // used to convert Exception to Status |
366 | 52 | Status(int code, std::string msg, std::string stack = "") : _code(code) { |
367 | 52 | _err_msg = std::make_unique<ErrMsg>(); |
368 | 52 | _err_msg->_msg = std::move(msg); |
369 | 52 | if (config::enable_stacktrace) { |
370 | 0 | _err_msg->_stack = std::move(stack); |
371 | 0 | } |
372 | 52 | } |
373 | | |
374 | | // copy c'tor makes copy of error detail so Status can be returned by value |
375 | 543k | Status(const Status& rhs) { *this = rhs; } |
376 | | |
377 | | // move c'tor |
378 | 787k | Status(Status&& rhs) noexcept = default; |
379 | | |
380 | | // same as copy c'tor |
381 | 543k | Status& operator=(const Status& rhs) { |
382 | 543k | _code = rhs._code; |
383 | 543k | if (rhs._err_msg) { |
384 | 756 | _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg); |
385 | 542k | } else { |
386 | | // If rhs error msg is empty, then should also clear current error msg |
387 | | // For example, if rhs is OK and current status is error, then copy to current |
388 | | // status, should clear current error message. |
389 | 542k | _err_msg.reset(); |
390 | 542k | } |
391 | 543k | return *this; |
392 | 543k | } |
393 | | |
394 | | // move assign |
395 | 4.53M | Status& operator=(Status&& rhs) noexcept { |
396 | 4.53M | _code = rhs._code; |
397 | 4.53M | if (rhs._err_msg) { |
398 | 31.2k | _err_msg = std::move(rhs._err_msg); |
399 | 4.50M | } else { |
400 | 4.50M | _err_msg.reset(); |
401 | 4.50M | } |
402 | 4.53M | return *this; |
403 | 4.53M | } |
404 | | |
405 | | template <bool stacktrace = true> |
406 | 4 | Status static create(const TStatus& status) { |
407 | 4 | return Error<stacktrace>( |
408 | 4 | status.status_code, |
409 | 4 | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); |
410 | 4 | } _ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE Line | Count | Source | 406 | 4 | Status static create(const TStatus& status) { | 407 | 4 | return Error<stacktrace>( | 408 | 4 | status.status_code, | 409 | 4 | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 410 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE |
411 | | |
412 | | template <bool stacktrace = true> |
413 | 54 | Status static create(const PStatus& pstatus) { |
414 | 54 | return Error<stacktrace>( |
415 | 54 | pstatus.status_code(), |
416 | 54 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); |
417 | 54 | } _ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE Line | Count | Source | 413 | 54 | Status static create(const PStatus& pstatus) { | 414 | 54 | return Error<stacktrace>( | 415 | 54 | pstatus.status_code(), | 416 | 54 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 417 | 54 | } |
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE |
418 | | |
419 | | template <int code, bool stacktrace = true, typename... Args> |
420 | 210k | Status static Error(std::string_view msg, Args&&... args) { |
421 | 210k | Status status; |
422 | 210k | status._code = code; |
423 | 210k | status._err_msg = std::make_unique<ErrMsg>(); |
424 | 210k | if constexpr (sizeof...(args) == 0) { |
425 | 183k | status._err_msg->_msg = msg; |
426 | 183k | } else { |
427 | 183k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
428 | 183k | } |
429 | 210k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
430 | 210k | config::enable_stacktrace) { |
431 | | // Delete the first one frame pointers, which are inside the status.h |
432 | 0 | status._err_msg->_stack = get_stack_trace(1); |
433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
434 | 0 | } |
435 | 210k | return status; |
436 | 210k | } Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 112 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 112 | Status status; | 422 | 112 | status._code = code; | 423 | 112 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 112 | if constexpr (sizeof...(args) == 0) { | 425 | 112 | status._err_msg->_msg = msg; | 426 | 112 | } else { | 427 | 112 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 112 | } | 429 | 112 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 112 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 112 | return status; | 436 | 112 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 17 | Status status; | 422 | 17 | status._code = code; | 423 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 17 | if constexpr (sizeof...(args) == 0) { | 425 | 17 | status._err_msg->_msg = msg; | 426 | 17 | } else { | 427 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 17 | } | 429 | 17 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 17 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 17 | return status; | 436 | 17 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILin257ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 2.94k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2.94k | Status status; | 422 | 2.94k | status._code = code; | 423 | 2.94k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2.94k | if constexpr (sizeof...(args) == 0) { | 425 | 2.94k | status._err_msg->_msg = msg; | 426 | 2.94k | } else { | 427 | 2.94k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2.94k | } | 429 | 2.94k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2.94k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2.94k | return status; | 436 | 2.94k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin258ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin259ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 30 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 30 | Status status; | 422 | 30 | status._code = code; | 423 | 30 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 30 | if constexpr (sizeof...(args) == 0) { | 425 | 30 | status._err_msg->_msg = msg; | 426 | 30 | } else { | 427 | 30 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 30 | } | 429 | 30 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 30 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 30 | return status; | 436 | 30 | } |
_ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 3 | Status status; | 422 | 3 | status._code = code; | 423 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 3 | if constexpr (sizeof...(args) == 0) { | 425 | 3 | status._err_msg->_msg = msg; | 426 | 3 | } else { | 427 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 3 | } | 429 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 3 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 3 | return status; | 436 | 3 | } |
_ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 75 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 75 | Status status; | 422 | 75 | status._code = code; | 423 | 75 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 75 | if constexpr (sizeof...(args) == 0) { | 425 | 75 | status._err_msg->_msg = msg; | 426 | 75 | } else { | 427 | 75 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 75 | } | 429 | 75 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 75 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 75 | return status; | 436 | 75 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 6 | Status status; | 422 | 6 | status._code = code; | 423 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 6 | if constexpr (sizeof...(args) == 0) { | 425 | 6 | status._err_msg->_msg = msg; | 426 | 6 | } else { | 427 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 6 | } | 429 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 6 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 6 | return status; | 436 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 7 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 7 | Status status; | 422 | 7 | status._code = code; | 423 | 7 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 7 | if constexpr (sizeof...(args) == 0) { | 425 | 7 | status._err_msg->_msg = msg; | 426 | 7 | } else { | 427 | 7 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 7 | } | 429 | 7 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 7 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 7 | return status; | 436 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 19 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 19 | Status status; | 422 | 19 | status._code = code; | 423 | 19 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 19 | if constexpr (sizeof...(args) == 0) { | 425 | 19 | status._err_msg->_msg = msg; | 426 | 19 | } else { | 427 | 19 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 19 | } | 429 | 19 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 19 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 19 | return status; | 436 | 19 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 7 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 7 | Status status; | 422 | 7 | status._code = code; | 423 | 7 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 7 | if constexpr (sizeof...(args) == 0) { | 425 | 7 | status._err_msg->_msg = msg; | 426 | 7 | } else { | 427 | 7 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 7 | } | 429 | 7 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 7 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 7 | return status; | 436 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 12 | Status status; | 422 | 12 | status._code = code; | 423 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 12 | if constexpr (sizeof...(args) == 0) { | 425 | 12 | status._err_msg->_msg = msg; | 426 | 12 | } else { | 427 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 12 | } | 429 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 12 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 12 | return status; | 436 | 12 | } |
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 | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRsEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA12_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 15 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 15 | Status status; | 422 | 15 | status._code = code; | 423 | 15 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 15 | if constexpr (sizeof...(args) == 0) { | 425 | 15 | status._err_msg->_msg = msg; | 426 | 15 | } else { | 427 | 15 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 15 | } | 429 | 15 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 15 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 15 | return status; | 436 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 55 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 55 | Status status; | 422 | 55 | status._code = code; | 423 | 55 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 55 | if constexpr (sizeof...(args) == 0) { | 425 | 55 | status._err_msg->_msg = msg; | 426 | 55 | } else { | 427 | 55 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 55 | } | 429 | 55 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 55 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 55 | return status; | 436 | 55 | } |
_ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 3 | Status status; | 422 | 3 | status._code = code; | 423 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 3 | if constexpr (sizeof...(args) == 0) { | 425 | 3 | status._err_msg->_msg = msg; | 426 | 3 | } else { | 427 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 3 | } | 429 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 3 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 3 | return status; | 436 | 3 | } |
_ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 17.0k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 17.0k | Status status; | 422 | 17.0k | status._code = code; | 423 | 17.0k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 17.0k | if constexpr (sizeof...(args) == 0) { | 425 | 14.4k | status._err_msg->_msg = msg; | 426 | 14.4k | } else { | 427 | 17.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 17.0k | } | 429 | 17.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 17.0k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 17.0k | return status; | 436 | 17.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ _ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
_ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_ Line | Count | Source | 420 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 3 | Status status; | 422 | 3 | status._code = code; | 423 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 3 | if constexpr (sizeof...(args) == 0) { | 425 | 3 | status._err_msg->_msg = msg; | 426 | 3 | } else { | 427 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 3 | } | 429 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 3 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 3 | return status; | 436 | 3 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 52.0k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 52.0k | Status status; | 422 | 52.0k | status._code = code; | 423 | 52.0k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 52.0k | if constexpr (sizeof...(args) == 0) { | 425 | 52.0k | status._err_msg->_msg = msg; | 426 | 52.0k | } else { | 427 | 52.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 52.0k | } | 429 | 52.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 52.0k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 52.0k | return status; | 436 | 52.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 5 | Status status; | 422 | 5 | status._code = code; | 423 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 5 | if constexpr (sizeof...(args) == 0) { | 425 | 5 | status._err_msg->_msg = msg; | 426 | 5 | } else { | 427 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 5 | } | 429 | 5 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 5 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 5 | return status; | 436 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 20.3k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 20.3k | Status status; | 422 | 20.3k | status._code = code; | 423 | 20.3k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 20.3k | if constexpr (sizeof...(args) == 0) { | 425 | 20.3k | status._err_msg->_msg = msg; | 426 | 20.3k | } else { | 427 | 20.3k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 20.3k | } | 429 | 20.3k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 20.3k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 20.3k | return status; | 436 | 20.3k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT1_ Line | Count | Source | 420 | 3 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 3 | Status status; | 422 | 3 | status._code = code; | 423 | 3 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 3 | if constexpr (sizeof...(args) == 0) { | 425 | 3 | status._err_msg->_msg = msg; | 426 | 3 | } else { | 427 | 3 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 3 | } | 429 | 3 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 3 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 3 | return status; | 436 | 3 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRiS2_RNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3000ELb1EJRNS_11TabletStateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 48 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 48 | Status status; | 422 | 48 | status._code = code; | 423 | 48 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 48 | if constexpr (sizeof...(args) == 0) { | 425 | 48 | status._err_msg->_msg = msg; | 426 | 48 | } else { | 427 | 48 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 48 | } | 429 | 48 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 48 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 48 | return status; | 436 | 48 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 6.11k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 6.11k | Status status; | 422 | 6.11k | status._code = code; | 423 | 6.11k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 6.11k | if constexpr (sizeof...(args) == 0) { | 425 | 6.11k | status._err_msg->_msg = msg; | 426 | 6.11k | } else { | 427 | 6.11k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 6.11k | } | 429 | 6.11k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 6.11k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 6.11k | return status; | 436 | 6.11k | } |
_ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 24 | Status status; | 422 | 24 | status._code = code; | 423 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 24 | if constexpr (sizeof...(args) == 0) { | 425 | 24 | status._err_msg->_msg = msg; | 426 | 24 | } else { | 427 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 24 | } | 429 | 24 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 24 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 24 | return status; | 436 | 24 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRKiS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 38 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 38 | Status status; | 422 | 38 | status._code = code; | 423 | 38 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 38 | if constexpr (sizeof...(args) == 0) { | 425 | 38 | status._err_msg->_msg = msg; | 426 | 38 | } else { | 427 | 38 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 38 | } | 429 | 38 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 38 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 38 | return status; | 436 | 38 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | 420 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 12 | Status status; | 422 | 12 | status._code = code; | 423 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 12 | if constexpr (sizeof...(args) == 0) { | 425 | 12 | status._err_msg->_msg = msg; | 426 | 12 | } else { | 427 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 12 | } | 429 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 12 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 12 | return status; | 436 | 12 | } |
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 | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 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 | 420 | 255 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 255 | Status status; | 422 | 255 | status._code = code; | 423 | 255 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 255 | if constexpr (sizeof...(args) == 0) { | 425 | 255 | status._err_msg->_msg = msg; | 426 | 255 | } else { | 427 | 255 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 255 | } | 429 | 255 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 255 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 255 | return status; | 436 | 255 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 6 | Status status; | 422 | 6 | status._code = code; | 423 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 6 | if constexpr (sizeof...(args) == 0) { | 425 | 6 | status._err_msg->_msg = msg; | 426 | 6 | } else { | 427 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 6 | } | 429 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 6 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 6 | return status; | 436 | 6 | } |
_ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
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 | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmS2_S2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin608ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3118ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3117ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_jS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 8 | Status status; | 422 | 8 | status._code = code; | 423 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 8 | if constexpr (sizeof...(args) == 0) { | 425 | 8 | status._err_msg->_msg = msg; | 426 | 8 | } else { | 427 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 8 | } | 429 | 8 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 8 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 8 | return status; | 436 | 8 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE3EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE5EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE7EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE8EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE6EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE9EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE10EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE11EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE24EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE14EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE28EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE29EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE15EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE16EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE31EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE32EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE33EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE37EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE38EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE39EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNS_9FieldTypeERNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 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 | 420 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 10 | Status status; | 422 | 10 | status._code = code; | 423 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 10 | if constexpr (sizeof...(args) == 0) { | 425 | 10 | status._err_msg->_msg = msg; | 426 | 10 | } else { | 427 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 10 | } | 429 | 10 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 10 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 10 | return status; | 436 | 10 | } |
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 | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6005ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6007ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6004ELb1EJRjRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6012ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 12 | Status status; | 422 | 12 | status._code = code; | 423 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 12 | if constexpr (sizeof...(args) == 0) { | 425 | 12 | status._err_msg->_msg = msg; | 426 | 12 | } else { | 427 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 12 | } | 429 | 12 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 12 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 12 | return status; | 436 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKdEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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: _ZN5doris6Status5ErrorILi3ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
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_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1601ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1500ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3104ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 6 | Status status; | 422 | 6 | status._code = code; | 423 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 6 | if constexpr (sizeof...(args) == 0) { | 425 | 6 | status._err_msg->_msg = msg; | 426 | 6 | } else { | 427 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 6 | } | 429 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 6 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 6 | return status; | 436 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi36ELb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin223ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin222ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb0EJRKlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllRlS2_llEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin500ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin506ELb1EJlRKNSt7__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: _ZN5doris6Status5ErrorILin406ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin406ELb1EJRlRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin402ELb1EJlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin502ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKNS_14TStorageFormat4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_lEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin3002ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 11 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 11 | Status status; | 422 | 11 | status._code = code; | 423 | 11 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 11 | if constexpr (sizeof...(args) == 0) { | 425 | 11 | status._err_msg->_msg = msg; | 426 | 11 | } else { | 427 | 11 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 11 | } | 429 | 11 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 11 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 11 | return status; | 436 | 11 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlEEES0_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: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_19TStorageBackendType4typeEEEES0_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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi36ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 67.9k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 67.9k | Status status; | 422 | 67.9k | status._code = code; | 423 | 67.9k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 67.9k | if constexpr (sizeof...(args) == 0) { | 425 | 67.9k | status._err_msg->_msg = msg; | 426 | 67.9k | } else { | 427 | 67.9k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 67.9k | } | 429 | 67.9k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 67.9k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 67.9k | return status; | 436 | 67.9k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 17 | Status status; | 422 | 17 | status._code = code; | 423 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 17 | if constexpr (sizeof...(args) == 0) { | 425 | 17 | status._err_msg->_msg = msg; | 426 | 17 | } else { | 427 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 17 | } | 429 | 17 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 17 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 17 | return status; | 436 | 17 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi37ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 322 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 322 | Status status; | 422 | 322 | status._code = code; | 423 | 322 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 322 | if constexpr (sizeof...(args) == 0) { | 425 | 322 | status._err_msg->_msg = msg; | 426 | 322 | } else { | 427 | 322 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 322 | } | 429 | 322 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 322 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 322 | return status; | 436 | 322 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 17 | Status status; | 422 | 17 | status._code = code; | 423 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 17 | if constexpr (sizeof...(args) == 0) { | 425 | 17 | status._err_msg->_msg = msg; | 426 | 17 | } else { | 427 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 17 | } | 429 | 17 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 17 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 17 | return status; | 436 | 17 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 6 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 6 | Status status; | 422 | 6 | status._code = code; | 423 | 6 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 6 | if constexpr (sizeof...(args) == 0) { | 425 | 6 | status._err_msg->_msg = msg; | 426 | 6 | } else { | 427 | 6 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 6 | } | 429 | 6 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 6 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 6 | return status; | 436 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 5 | Status status; | 422 | 5 | status._code = code; | 423 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 5 | if constexpr (sizeof...(args) == 0) { | 425 | 5 | status._err_msg->_msg = msg; | 426 | 5 | } else { | 427 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 5 | } | 429 | 5 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 5 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 5 | return status; | 436 | 5 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin7411ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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 | 420 | 7 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 7 | Status status; | 422 | 7 | status._code = code; | 423 | 7 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 7 | if constexpr (sizeof...(args) == 0) { | 425 | 7 | status._err_msg->_msg = msg; | 426 | 7 | } else { | 427 | 7 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 7 | } | 429 | 7 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 7 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 7 | return status; | 436 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb0EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA18_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA23_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRA26_KcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin240ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 532 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 532 | Status status; | 422 | 532 | status._code = code; | 423 | 532 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 532 | if constexpr (sizeof...(args) == 0) { | 425 | 532 | status._err_msg->_msg = msg; | 426 | 532 | } else { | 427 | 532 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 532 | } | 429 | 532 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 532 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 532 | return status; | 436 | 532 | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 3.38k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 3.38k | Status status; | 422 | 3.38k | status._code = code; | 423 | 3.38k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 3.38k | if constexpr (sizeof...(args) == 0) { | 425 | 3.38k | status._err_msg->_msg = msg; | 426 | 3.38k | } else { | 427 | 3.38k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 3.38k | } | 429 | 3.38k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 3.38k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 3.38k | return status; | 436 | 3.38k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 27 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 27 | Status status; | 422 | 27 | status._code = code; | 423 | 27 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 27 | if constexpr (sizeof...(args) == 0) { | 425 | 27 | status._err_msg->_msg = msg; | 426 | 27 | } else { | 427 | 27 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 27 | } | 429 | 27 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 27 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 27 | return status; | 436 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7412ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 21.8k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 21.8k | Status status; | 422 | 21.8k | status._code = code; | 423 | 21.8k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 21.8k | if constexpr (sizeof...(args) == 0) { | 425 | 21.8k | status._err_msg->_msg = msg; | 426 | 21.8k | } else { | 427 | 21.8k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 21.8k | } | 429 | 21.8k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 21.8k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 21.8k | return status; | 436 | 21.8k | } |
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 12.1k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 12.1k | Status status; | 422 | 12.1k | status._code = code; | 423 | 12.1k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 12.1k | if constexpr (sizeof...(args) == 0) { | 425 | 12.1k | status._err_msg->_msg = msg; | 426 | 12.1k | } else { | 427 | 12.1k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 12.1k | } | 429 | 12.1k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 12.1k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 12.1k | return status; | 436 | 12.1k | } |
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 785 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 785 | Status status; | 422 | 785 | status._code = code; | 423 | 785 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 785 | if constexpr (sizeof...(args) == 0) { | 425 | 785 | status._err_msg->_msg = msg; | 426 | 785 | } else { | 427 | 785 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 785 | } | 429 | 785 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 785 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 785 | return status; | 436 | 785 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 4.56k | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4.56k | Status status; | 422 | 4.56k | status._code = code; | 423 | 4.56k | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4.56k | if constexpr (sizeof...(args) == 0) { | 425 | 4.56k | status._err_msg->_msg = msg; | 426 | 4.56k | } else { | 427 | 4.56k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4.56k | } | 429 | 4.56k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4.56k | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4.56k | return status; | 436 | 4.56k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 48 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 48 | Status status; | 422 | 48 | status._code = code; | 423 | 48 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 48 | if constexpr (sizeof...(args) == 0) { | 425 | 48 | status._err_msg->_msg = msg; | 426 | 48 | } else { | 427 | 48 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 48 | } | 429 | 48 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 48 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 48 | return status; | 436 | 48 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi47ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 9 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 9 | Status status; | 422 | 9 | status._code = code; | 423 | 9 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 9 | if constexpr (sizeof...(args) == 0) { | 425 | 9 | status._err_msg->_msg = msg; | 426 | 9 | } else { | 427 | 9 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 9 | } | 429 | 9 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 9 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 9 | return status; | 436 | 9 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRmS6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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 | 420 | 18 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 18 | Status status; | 422 | 18 | status._code = code; | 423 | 18 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 18 | if constexpr (sizeof...(args) == 0) { | 425 | 18 | status._err_msg->_msg = msg; | 426 | 18 | } else { | 427 | 18 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 18 | } | 429 | 18 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 18 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 18 | return status; | 436 | 18 | } |
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: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcS3_EEES0_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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6001ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 2 | Status status; | 422 | 2 | status._code = code; | 423 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 2 | if constexpr (sizeof...(args) == 0) { | 425 | 2 | status._err_msg->_msg = msg; | 426 | 2 | } else { | 427 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 2 | } | 429 | 2 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 2 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 2 | return status; | 436 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 420 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 4 | Status status; | 422 | 4 | status._code = code; | 423 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 4 | if constexpr (sizeof...(args) == 0) { | 425 | 4 | status._err_msg->_msg = msg; | 426 | 4 | } else { | 427 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 4 | } | 429 | 4 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 4 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 4 | return status; | 436 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT1_ Line | Count | Source | 420 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 421 | 1 | Status status; | 422 | 1 | status._code = code; | 423 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 424 | 1 | if constexpr (sizeof...(args) == 0) { | 425 | 1 | status._err_msg->_msg = msg; | 426 | 1 | } else { | 427 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 428 | 1 | } | 429 | 1 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 430 | 1 | config::enable_stacktrace) { | 431 | | // Delete the first one frame pointers, which are inside the status.h | 432 | 0 | status._err_msg->_stack = get_stack_trace(1); | 433 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 434 | 0 | } | 435 | 1 | return status; | 436 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb0EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRlRilEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ |
437 | | |
438 | | template <bool stacktrace = true, typename... Args> |
439 | 17.1k | Status static Error(int code, std::string_view msg, Args&&... args) { |
440 | 17.1k | Status status; |
441 | 17.1k | status._code = code; |
442 | 17.1k | status._err_msg = std::make_unique<ErrMsg>(); |
443 | 17.1k | if constexpr (sizeof...(args) == 0) { |
444 | 0 | status._err_msg->_msg = msg; |
445 | 0 | } else { |
446 | 0 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
447 | 0 | } |
448 | 17.1k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && |
449 | 17.1k | config::enable_stacktrace) { |
450 | 0 | status._err_msg->_stack = get_stack_trace(1); |
451 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
452 | 0 | } |
453 | 17.1k | return status; |
454 | 17.1k | } _ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 439 | 17.0k | Status static Error(int code, std::string_view msg, Args&&... args) { | 440 | 17.0k | Status status; | 441 | 17.0k | status._code = code; | 442 | 17.0k | status._err_msg = std::make_unique<ErrMsg>(); | 443 | 17.0k | if constexpr (sizeof...(args) == 0) { | 444 | 15.3k | status._err_msg->_msg = msg; | 445 | 15.3k | } else { | 446 | 17.0k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 447 | 17.0k | } | 448 | 17.0k | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 449 | 17.0k | config::enable_stacktrace) { | 450 | 0 | status._err_msg->_stack = get_stack_trace(1); | 451 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 452 | 0 | } | 453 | 17.0k | return status; | 454 | 17.0k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 439 | 68 | Status static Error(int code, std::string_view msg, Args&&... args) { | 440 | 68 | Status status; | 441 | 68 | status._code = code; | 442 | 68 | status._err_msg = std::make_unique<ErrMsg>(); | 443 | 68 | if constexpr (sizeof...(args) == 0) { | 444 | 68 | status._err_msg->_msg = msg; | 445 | 68 | } else { | 446 | 68 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 447 | 68 | } | 448 | 68 | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace && | 449 | 68 | config::enable_stacktrace) { | 450 | 0 | status._err_msg->_stack = get_stack_trace(1); | 451 | 0 | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 452 | 0 | } | 453 | 68 | return status; | 454 | 68 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
455 | | |
456 | 342M | static Status OK() { return {}; } |
457 | | |
458 | | template <bool stacktrace = true, typename... Args> |
459 | 0 | static Status FatalError(std::string_view msg, Args&&... args) { |
460 | 0 | #ifndef NDEBUG |
461 | 0 | LOG(FATAL) << fmt::format(msg, std::forward<Args>(args)...); |
462 | 0 | #endif |
463 | 0 | return Error<ErrorCode::FATAL_ERROR, stacktrace>(msg, std::forward<Args>(args)...); |
464 | 0 | } Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERlEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_EEEES0_SA_DpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRNS_15ThreadPoolToken5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10FatalErrorILb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
465 | | |
466 | | // default have stacktrace. could disable manually. |
467 | | #define ERROR_CTOR(name, code) \ |
468 | | template <bool stacktrace = true, typename... Args> \ |
469 | 52.6k | static Status name(std::string_view msg, Args&&... args) { \ |
470 | 52.6k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
471 | 52.6k | } Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 17 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 17 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 17 | } |
_ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 2 | } |
_ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 3 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 3 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 3 | } |
_ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 74 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 74 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 74 | } |
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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 | 469 | 7 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 7 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRlRKlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 4 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 12 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 12 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 15 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 15 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 52.0k | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 52.0k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 52.0k | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJmmRdEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S9_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_mEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 54 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 54 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 54 | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRlRxEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRS0_RSt6atomicIbEmRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSC_RmbEEES0_St17basic_string_viewIcSA_EDpOT0_ Line | Count | Source | 469 | 3 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 3 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 3 | } |
Unexecuted instantiation: _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_ _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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 | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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_ _ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 6 | } |
_ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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 | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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 | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmRjSB_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 12 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 12 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 6 | } |
Unexecuted instantiation: _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 | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjRjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_bEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKlRKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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 | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 17 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 17 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 17 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiRS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 322 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 322 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 322 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_8FileTypeERjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 469 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_20TUniqueKeyUpdateMode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRNS_8FileTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_8FileTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmS3_RKlRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJiRKiRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
_ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 5 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 5 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 5 | } |
_ZN5doris6Status13InternalErrorILb1EJRN11TExprOpcode4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA6_KcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiS9_S9_S9_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 27 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 27 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 27 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlS2_RKjlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
_ZN5doris6Status13InternalErrorILb1EJRlmlRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
_ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlS2_RKmlS4_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
_ZN5doris6Status13InternalErrorILb1EJRlmlRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
_ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmlRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RmSA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKaNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKnNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKfNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKdNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet4Type4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKN8tparquet13ConvertedType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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: _ZN5doris6Status13InternalErrorILb1EJmRKmEEES0_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_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_SC_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRmRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRmS6_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ 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_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbSA_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S6_DpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 469 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RmSB_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERljEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKllRmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRmbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERbS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJSt14_Bit_referenceRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJjmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKiRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Line | Count | Source | 469 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 470 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 471 | 1 | } |
Unexecuted instantiation: _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: _ZN5doris6Status8NotFoundILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEERS0_NSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
472 | | |
473 | | // default have no stacktrace. could enable manually. |
474 | | #define ERROR_CTOR_NOSTACK(name, code) \ |
475 | | template <bool stacktrace = false, typename... Args> \ |
476 | 134k | static Status name(std::string_view msg, Args&&... args) { \ |
477 | 134k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
478 | 134k | } _ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 112 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 112 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 112 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 7 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 7 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKlRKNS_9TTaskType4typeERKNS_9TPushType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 19 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 19 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 19 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlRKNS_9TTaskType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 476 | 5 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 5 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 5 | } |
_ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 476 | 20.3k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 20.3k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 20.3k | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 6.11k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 6.11k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 6.11k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 476 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status12NetworkErrorILb0EJPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS9_lEEES0_St17basic_string_viewIcS7_EDpOT0_ Line | Count | Source | 476 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status12NetworkErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 67.9k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 67.9k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 67.9k | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 6 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 6 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 6 | } |
Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status11CgroupErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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 | 476 | 7 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 7 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 7 | } |
Unexecuted instantiation: _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 | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 21.8k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 21.8k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 21.8k | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 12.1k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 12.1k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 12.1k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 785 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 785 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 785 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 4.56k | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 4.56k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 4.56k | } |
_ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 476 | 48 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 48 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 48 | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRNS_9StringRefEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 476 | 9 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 9 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 9 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT0_ Line | Count | Source | 476 | 18 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 18 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 18 | } |
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_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKclEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S5_DpOT0_ Line | Count | Source | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9CancelledILb0EJRKiPKcRlS6_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcSA_EDpOT0_ Line | Count | Source | 476 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 477 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 478 | 1 | } |
|
479 | | |
480 | | ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT) |
481 | | ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED) |
482 | | ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED) |
483 | | ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT) |
484 | | ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH) |
485 | | ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE) |
486 | | ERROR_CTOR(Corruption, CORRUPTION) |
487 | | ERROR_CTOR(IOError, IO_ERROR) |
488 | | ERROR_CTOR(NotFound, NOT_FOUND) |
489 | | ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST) |
490 | | ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR) |
491 | | ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE) |
492 | | ERROR_CTOR(InternalError, INTERNAL_ERROR) |
493 | | ERROR_CTOR(RuntimeError, RUNTIME_ERROR) |
494 | | ERROR_CTOR_NOSTACK(Cancelled, CANCELLED) |
495 | | ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED) |
496 | | ERROR_CTOR(RpcError, THRIFT_RPC_ERROR) |
497 | | ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT) |
498 | | ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS) |
499 | | ERROR_CTOR(Uninitialized, UNINITIALIZED) |
500 | | ERROR_CTOR(Aborted, ABORTED) |
501 | | ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR) |
502 | | ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED) |
503 | | ERROR_CTOR(HttpError, HTTP_ERROR) |
504 | | ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN) |
505 | | ERROR_CTOR_NOSTACK(CgroupError, CGROUP_ERROR) |
506 | | ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED) |
507 | | ERROR_CTOR_NOSTACK(NetworkError, NETWORK_ERROR) |
508 | | #undef ERROR_CTOR |
509 | | |
510 | | template <int code> |
511 | 815k | bool is() const { |
512 | 815k | return code == _code; |
513 | 815k | } Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin3115EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv _ZNK5doris6Status2isILi31EEEbv Line | Count | Source | 511 | 22 | bool is() const { | 512 | 22 | return code == _code; | 513 | 22 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi35EEEbv _ZNK5doris6Status2isILin7000EEEbv Line | Count | Source | 511 | 5 | bool is() const { | 512 | 5 | return code == _code; | 513 | 5 | } |
_ZNK5doris6Status2isILin7001EEEbv Line | Count | Source | 511 | 4 | bool is() const { | 512 | 4 | return code == _code; | 513 | 4 | } |
_ZNK5doris6Status2isILi5EEEbv Line | Count | Source | 511 | 118 | bool is() const { | 512 | 118 | return code == _code; | 513 | 118 | } |
_ZNK5doris6Status2isILin3002EEEbv Line | Count | Source | 511 | 519 | bool is() const { | 512 | 519 | return code == _code; | 513 | 519 | } |
_ZNK5doris6Status2isILi34EEEbv Line | Count | Source | 511 | 2 | bool is() const { | 512 | 2 | return code == _code; | 513 | 2 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin406EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv _ZNK5doris6Status2isILi6EEEbv Line | Count | Source | 511 | 4 | bool is() const { | 512 | 4 | return code == _code; | 513 | 4 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin908EEEbv _ZNK5doris6Status2isILin7002EEEbv Line | Count | Source | 511 | 6.02k | bool is() const { | 512 | 6.02k | return code == _code; | 513 | 6.02k | } |
_ZNK5doris6Status2isILi30EEEbv Line | Count | Source | 511 | 778k | bool is() const { | 512 | 778k | return code == _code; | 513 | 778k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin2000EEEbv _ZNK5doris6Status2isILi32EEEbv Line | Count | Source | 511 | 27.2k | bool is() const { | 512 | 27.2k | return code == _code; | 513 | 27.2k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin6004EEEbv _ZNK5doris6Status2isILi39EEEbv Line | Count | Source | 511 | 1 | bool is() const { | 512 | 1 | return code == _code; | 513 | 1 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin808EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv _ZNK5doris6Status2isILin6003EEEbv Line | Count | Source | 511 | 17 | bool is() const { | 512 | 17 | return code == _code; | 513 | 17 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi14EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi46EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi100EEEbv _ZNK5doris6Status2isILi11EEEbv Line | Count | Source | 511 | 1 | bool is() const { | 512 | 1 | return code == _code; | 513 | 1 | } |
_ZNK5doris6Status2isILin257EEEbv Line | Count | Source | 511 | 262 | bool is() const { | 512 | 262 | return code == _code; | 513 | 262 | } |
_ZNK5doris6Status2isILin258EEEbv Line | Count | Source | 511 | 180 | bool is() const { | 512 | 180 | return code == _code; | 513 | 180 | } |
_ZNK5doris6Status2isILi42EEEbv Line | Count | Source | 511 | 322 | bool is() const { | 512 | 322 | return code == _code; | 513 | 322 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv _ZNK5doris6Status2isILin259EEEbv Line | Count | Source | 511 | 2.94k | bool is() const { | 512 | 2.94k | return code == _code; | 513 | 2.94k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi73EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi8EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi37EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi9EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin7311EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin7211EEEbv |
514 | | |
515 | 0 | void set_code(int code) { _code = code; } |
516 | | |
517 | 339M | bool ok() const { return _code == ErrorCode::OK; } |
518 | | |
519 | | // Convert into TStatus. |
520 | | void to_thrift(TStatus* status) const; |
521 | | TStatus to_thrift() const; |
522 | | void to_protobuf(PStatus* status) const; |
523 | | |
524 | | std::string to_string() const; |
525 | | std::string to_string_no_stack() const; |
526 | | |
527 | | /// @return A json representation of this status. |
528 | | std::string to_json() const; |
529 | | |
530 | 21.4k | int code() const { return _code; } |
531 | | |
532 | | /// Clone this status and add the specified prefix to the message. |
533 | | /// |
534 | | /// If this status is OK, then an OK status will be returned. |
535 | | /// |
536 | | /// @param [in] msg |
537 | | /// The message to prepend. |
538 | | /// @return A ref to Status object |
539 | | Status& prepend(std::string_view msg); |
540 | | |
541 | | /// Add the specified suffix to the message. |
542 | | /// |
543 | | /// If this status is OK, then an OK status will be returned. |
544 | | /// |
545 | | /// @param [in] msg |
546 | | /// The message to append. |
547 | | /// @return A ref to Status object |
548 | | Status& append(std::string_view msg); |
549 | | |
550 | | // if(!status) or if (status) will use this operator |
551 | 71.7M | operator bool() const { return this->ok(); } |
552 | | |
553 | | // Used like if ASSERT_EQ(res, Status::OK()) |
554 | | // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state |
555 | | // ignore error messages during comparison |
556 | 19.5k | bool operator==(const Status& st) const { return _code == st._code; } |
557 | | |
558 | | // Used like if ASSERT_NE(res, Status::OK()) |
559 | 1.24M | bool operator!=(const Status& st) const { return _code != st._code; } |
560 | | |
561 | | friend std::ostream& operator<<(std::ostream& ostr, const Status& status); |
562 | | |
563 | 20.1k | std::string_view msg() const { return _err_msg ? _err_msg->_msg : std::string_view(""); } |
564 | | |
565 | 0 | std::pair<int, std::string> retrieve_error_msg() { return {_code, std::move(_err_msg->_msg)}; } |
566 | | |
567 | | friend io::ObjectStorageStatus convert_to_obj_response(Status st); |
568 | | |
569 | | private: |
570 | | int _code; |
571 | | struct ErrMsg { |
572 | | std::string _msg; |
573 | | std::string _stack; |
574 | | }; |
575 | | std::unique_ptr<ErrMsg> _err_msg; |
576 | | |
577 | 5.18k | std::string code_as_string() const { |
578 | 5.18k | return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code)) |
579 | 5.18k | : fmt::format("E{}", (int16_t)_code); |
580 | 5.18k | } |
581 | | }; |
582 | | |
583 | | // There are many thread using status to indicate the cancel state, one thread may update it and |
584 | | // the other thread will read it. Status is not thread safe, for example, if one thread is update it |
585 | | // and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and |
586 | | // it is deconstructed during copy method. |
587 | | // And also we could not use lock, because we need get status frequently to check if it is cancelled. |
588 | | // The default value is ok. |
589 | | class AtomicStatus { |
590 | | public: |
591 | 332k | AtomicStatus() : error_st_(Status::OK()) {} |
592 | | |
593 | 2.55M | bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; } |
594 | | |
595 | 108 | bool update(const Status& new_status) { |
596 | | // If new status is normal, or the old status is abnormal, then not need update |
597 | 108 | if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) { |
598 | 67 | return false; |
599 | 67 | } |
600 | 41 | std::lock_guard l(mutex_); |
601 | 41 | if (error_code_.load(std::memory_order_acquire) != 0) { |
602 | 0 | return false; |
603 | 0 | } |
604 | 41 | error_st_ = new_status; |
605 | 41 | error_code_.store(new_status.code(), std::memory_order_release); |
606 | 41 | return true; |
607 | 41 | } |
608 | | |
609 | 8 | void reset() { |
610 | 8 | std::lock_guard l(mutex_); |
611 | 8 | error_st_ = Status::OK(); |
612 | 8 | error_code_ = 0; |
613 | 8 | } |
614 | | |
615 | | // will copy a new status object to avoid concurrency |
616 | | // This stauts could only be called when ok==false |
617 | 627 | Status status() const { |
618 | 627 | std::lock_guard l(mutex_); |
619 | 627 | return error_st_; |
620 | 627 | } |
621 | | |
622 | | AtomicStatus(const AtomicStatus&) = delete; |
623 | | void operator=(const AtomicStatus&) = delete; |
624 | | |
625 | | private: |
626 | | std::atomic_int16_t error_code_ = 0; |
627 | | Status error_st_; |
628 | | // mutex's lock is not a const method, but we will use this mutex in |
629 | | // some const method, so that it should be mutable. |
630 | | mutable std::mutex mutex_; |
631 | | }; |
632 | | |
633 | 5.03k | inline std::ostream& operator<<(std::ostream& ostr, const Status& status) { |
634 | 5.03k | ostr << '[' << status.code_as_string() << ']'; |
635 | 5.03k | ostr << status.msg(); |
636 | 5.03k | if (status._err_msg && !status._err_msg->_stack.empty() && config::enable_stacktrace) { |
637 | 0 | ostr << '\n' << status._err_msg->_stack; |
638 | 0 | } |
639 | 5.03k | return ostr; |
640 | 5.03k | } |
641 | | |
642 | 4.94k | inline std::string Status::to_string() const { |
643 | 4.94k | std::stringstream ss; |
644 | 4.94k | ss << *this; |
645 | 4.94k | return ss.str(); |
646 | 4.94k | } |
647 | | |
648 | 0 | inline std::string Status::to_string_no_stack() const { |
649 | 0 | return fmt::format("[{}]{}", code_as_string(), msg()); |
650 | 0 | } |
651 | | |
652 | | // some generally useful macros |
653 | | #define RETURN_IF_ERROR(stmt) \ |
654 | 254M | do { \ |
655 | 254M | Status _status_ = (stmt); \ Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_12clEv Unexecuted instantiation: olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_13clEv beta_rowset.cpp:_ZZN5doris10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEENK3$_0clEv Line | Count | Source | 655 | 7.64k | Status _status_ = (stmt); \ |
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv Line | Count | Source | 655 | 619 | Status _status_ = (stmt); \ |
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeE Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE0_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRNS_3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_17SubstreamIteratorELb0EE4NodeEE1_clESK_ Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKNS_7VersionEPS6_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE Unexecuted instantiation: single_replica_compaction.cpp:_ZZN5doris23SingleReplicaCompaction17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask14_make_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiliiRKSt6vectorINS_7VersionESaISA_EEPS6_PbENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE Unexecuted instantiation: engine_clone_task.cpp:_ZZN5doris15EngineCloneTask17_release_snapshotERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS8_ENK3$_0clERNS_16ClientConnectionINS_20BackendServiceClientEEE Unexecuted instantiation: wal_manager.cpp:_ZZN5doris10WalManager18_replay_backgroundEvENK3$_0clEv Unexecuted instantiation: wal_table.cpp:_ZZN5doris8WalTable16_get_column_infoEllRSt3mapIlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIlESaISt4pairIKlS7_EEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: fragment_mgr.cpp:_ZZN5doris11FragmentMgr24_get_or_create_query_ctxERKNS_23TPipelineFragmentParamsERKNS_27TPipelineFragmentParamsListENS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENK3$_0clERN5phmap13flat_hash_mapINS_9TUniqueIdESt8weak_ptrIS9_ENSD_4HashISF_EENSD_7EqualToISF_EESaISt4pairIKSF_SH_EEEE Unexecuted instantiation: group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueEllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEv Unexecuted instantiation: group_commit_mgr.cpp:_ZZZN5doris16GroupCommitTable26get_first_block_load_queueEllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEES4_INS_8pipeline10DependencyEESC_ENK3$_1clEvENKUlvE_clEv Unexecuted instantiation: load_channel_mgr.cpp:_ZZN5doris14LoadChannelMgr16_start_bg_workerEvENK3$_0clEv Unexecuted instantiation: load_path_mgr.cpp:_ZZN5doris11LoadPathMgr4initEvENK3$_0clEv Unexecuted instantiation: result_buffer_mgr.cpp:_ZZN5doris15ResultBufferMgr4initEvENK3$_0clEv data_consumer_pool.cpp:_ZZN5doris16DataConsumerPool15start_bg_workerEvENK3$_0clEv Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe22request_and_exec_plansEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: multi_table_pipe.cpp:_ZZN5doris2io14MultiTablePipe10exec_plansEPNS_7ExecEnvERKSt6vectorINS_23TPipelineFragmentParamsESaIS5_EEENK3$_0clEPNS_12RuntimeStateEPNS_6StatusE Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor9begin_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor14pre_commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor10commit_txnEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel17_write_block_dataERKNS_28PTabletWriterAddBlockRequestElRSt13unordered_mapIlSt6vectorIjNS_18CustomStdAllocatorIjNS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorEEEEEESt4hashIlESt8equal_toIlESaISt4pairIKlSB_EEEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv Unexecuted instantiation: rowid_fetcher.cpp:_ZZN5doris18RowIdStorageReader14read_by_rowidsERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv Unexecuted instantiation: http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: stream_load.cpp:_ZZN5doris16StreamLoadAction12_process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE_clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZZN5doris10vectorized13NewJsonReader15_get_json_valueEPmPbPN8simdjson10error_codeES3_ENK3$_0clERN3fmt2v719basic_memory_bufferIcLm500ESaIcEEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESB_EEENKUlvE0_clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_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 Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_0clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader22_handle_simdjson_errorERN8simdjson14simdjson_errorERNS0_5BlockEmPbENK3$_1clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_0clB5cxx11Ev Unexecuted instantiation: new_json_reader.cpp:_ZZN5doris10vectorized13NewJsonReader17_append_error_msgEPN8simdjson8fallback8ondemand6objectENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PbENK3$_1clB5cxx11Ev _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SH_EEDaSB_SC_SD_ Line | Count | Source | 655 | 29 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESH_SG_IbLb0EEEEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb1EESG_IbLb0EESI_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESI_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESG_IbLb1EESH_EEDaSB_SC_SD_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_T1_E_clISt17integral_constantIbLb0EESH_SG_IbLb1EEEEDaSB_SC_SD_ _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESG_EEDaSB_SC_ Line | Count | Source | 655 | 64 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESG_EEDaSB_SC_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb1EESF_IbLb0EEEEDaSB_SC_ Unexecuted instantiation: _ZZNK5doris10vectorized22FunctionStringParseUrl12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjmENKUlT_T0_E_clISt17integral_constantIbLb0EESF_IbLb1EEEEDaSB_SC_ spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv Line | Count | Source | 655 | 69 | Status _status_ = (stmt); \ |
Unexecuted instantiation: async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv Unexecuted instantiation: autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution26automatic_create_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: vrow_distribution.cpp:_ZZN5doris10vectorized16VRowDistribution30_replace_overwriting_partitionEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_0clB5cxx11Ev Unexecuted instantiation: vtablet_finder.cpp:_ZZN5doris10vectorized16OlapTabletFinder12find_tabletsEPNS_12RuntimeStateEPNS0_5BlockEiRSt6vectorIPNS_19VOlapTablePartitionESaIS8_EERS6_IjSaIjEERS6_IbSaIbEEPS6_IlSaIlEEENK3$_1clB5cxx11Ev Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_ Unexecuted instantiation: olap_scan_operator.cpp:_ZZN5doris8pipeline18OlapScanLocalState29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_ Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev Unexecuted instantiation: file_scanner.cpp:_ZZN5doris10vectorized11FileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev Unexecuted instantiation: meta_scanner.cpp:_ZZN5doris10vectorized11MetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv Unexecuted instantiation: schema_scanner.cpp:_ZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEv Unexecuted instantiation: schema_scanner.cpp:_ZZZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEvENKUlvE_clEvENKUlvE_clEv Unexecuted instantiation: schema_partitions_scanner.cpp:_ZZN5doris23SchemaPartitionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE 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_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Line | Count | Source | 655 | 15 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISE_vEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Line | Count | Source | 655 | 9 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISF_NS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusES9_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISE_EEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Line | Count | Source | 655 | 9 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
_ZZN5doris8pipeline18SetSourceOperatorXILb1EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRSt9monostateEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashISF_vEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIhNS5_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberItNS5_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIjNS5_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberImNS5_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEENS_6StatusESA_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm128EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_26MethodSingleNullableColumnINS5_15MethodOneNumberIN4wide7integerILm256EjEENS5_15DataWithNullKeyI9PHHashMapISH_NS_14RowRefWithFlagE9HashCRC32ISH_EEEEEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Line | Count | Source | 655 | 6 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISG_NS_14RowRefWithFlagE9HashCRC32ISG_EEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEENS_6StatusESA_ Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32ISH_EEEEEENS_6StatusESA_ Line | Count | Source | 655 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: _ZZN5doris8pipeline18SetSourceOperatorXILb0EE9get_blockEPNS_12RuntimeStateEPNS_10vectorized5BlockEPbENKUlOT_E_clIRNS5_15MethodKeysFixedI9PHHashMapINS5_7UInt136ENS_14RowRefWithFlagE9HashCRC32ISF_EEEEEENS_6StatusESA_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_0clERSt9monostate Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS9_vEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapISA_Pc9HashCRC32ISA_EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapISA_Pc9HashCRC32ISA_EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIhNS2_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberItNS2_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIN4wide7integerILm128EjEENS2_15DataWithNullKeyI9PHHashMapISB_Pc9HashCRC32ISB_EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIN4wide7integerILm256EjEENS2_15DataWithNullKeyI9PHHashMapISB_Pc9HashCRC32ISB_EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_19MethodStringNoCacheINS2_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorEEEEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32ISB_EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32ISB_EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc9HashCRC32IS9_EEEEEENS_6StatusERT_ Unexecuted instantiation: pipeline_fragment_context.cpp:_ZZN5doris8pipeline23PipelineFragmentContext21_build_pipeline_tasksERKNS_23TPipelineFragmentParamsEPNS_10ThreadPoolEENK3$_1clEv task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv Line | Count | Source | 655 | 8 | Status _status_ = (stmt); \ |
Unexecuted instantiation: cloud_meta_mgr.cpp:_ZZZN5doris5cloudL22send_stats_to_fe_asyncEllRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_17CommitTxnResponseEENK3$_0clEvENKUlRNS_16ClientConnectionINS_21FrontendServiceClientEEEE_clESF_ Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv Unexecuted instantiation: cloud_storage_engine.cpp:_ZZN5doris18CloudStorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv |
656 | 254M | if (UNLIKELY(!_status_.ok())) { \ |
657 | 16.4k | return _status_; \ |
658 | 16.4k | } \ |
659 | 254M | } while (false) |
660 | | |
661 | | #define PROPAGATE_FALSE(stmt) \ |
662 | 83.6k | do { \ |
663 | 83.6k | if (UNLIKELY(!static_cast<bool>(stmt))) { \ |
664 | 324 | return false; \ |
665 | 324 | } \ |
666 | 83.6k | } while (false) |
667 | | |
668 | | #define THROW_IF_ERROR(stmt) \ |
669 | 1.20M | do { \ |
670 | 1.20M | Status _status_ = (stmt); \ |
671 | 1.20M | if (UNLIKELY(!_status_.ok())) { \ |
672 | 1 | throw Exception(_status_); \ |
673 | 1 | } \ |
674 | 1.20M | } while (false) |
675 | | |
676 | | #define RETURN_IF_STATUS_ERROR(status, stmt) \ |
677 | | do { \ |
678 | | status = (stmt); \ |
679 | | if (UNLIKELY(!status.ok())) { \ |
680 | | return; \ |
681 | | } \ |
682 | | } while (false) |
683 | | |
684 | | #define EXIT_IF_ERROR(stmt) \ |
685 | | do { \ |
686 | | Status _status_ = (stmt); \ |
687 | | if (UNLIKELY(!_status_.ok())) { \ |
688 | | LOG(ERROR) << _status_; \ |
689 | | exit(1); \ |
690 | | } \ |
691 | | } while (false) |
692 | | |
693 | | #define RETURN_FALSE_IF_ERROR(stmt) \ |
694 | 8 | do { \ |
695 | 8 | Status status = (stmt); \ |
696 | 8 | if (UNLIKELY(!status.ok())) { \ |
697 | 0 | return false; \ |
698 | 0 | } \ |
699 | 8 | } while (false) |
700 | | |
701 | | /// @brief Emit a warning if @c to_call returns a bad status. |
702 | | #define WARN_IF_ERROR(to_call, warning_prefix) \ |
703 | 11.0k | do { \ |
704 | 11.0k | Status _s = (to_call); \ |
705 | 11.0k | if (UNLIKELY(!_s.ok())) { \ |
706 | 0 | LOG(WARNING) << (warning_prefix) << ": " << _s; \ |
707 | 0 | } \ |
708 | 11.0k | } while (false); |
709 | | |
710 | | #define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix) \ |
711 | 20.3k | do { \ |
712 | 20.3k | Status _s = (stmt); \ |
713 | 20.3k | if (UNLIKELY(!_s.ok())) { \ |
714 | 0 | LOG(WARNING) << (warning_prefix) << ", error: " << _s; \ |
715 | 0 | return _s; \ |
716 | 0 | } \ |
717 | 20.3k | } while (false); |
718 | | |
719 | | template <typename T> |
720 | | using Result = expected<T, Status>; |
721 | | |
722 | | using ResultError = unexpected<Status>; |
723 | | |
724 | | #define RETURN_IF_ERROR_RESULT(stmt) \ |
725 | 918 | do { \ |
726 | 918 | Status _status_ = (stmt); \ |
727 | 918 | if (UNLIKELY(!_status_.ok())) { \ |
728 | 0 | return unexpected(std::move(_status_)); \ |
729 | 0 | } \ |
730 | 918 | } while (false) |
731 | | |
732 | | #define DORIS_TRY(stmt) \ |
733 | 25.1k | ({ \ |
734 | 25.1k | auto&& res = (stmt); \ |
735 | 25.1k | using T = std::decay_t<decltype(res)>; \ |
736 | 25.1k | if (!res.has_value()) [[unlikely]] { \ |
737 | 4 | return std::forward<T>(res).error(); \ |
738 | 4 | } \ |
739 | 25.1k | std::forward<T>(res).value(); \ |
740 | 25.1k | }); |
741 | | |
742 | | } // namespace doris |
743 | | |
744 | | // specify formatter for Status |
745 | | template <> |
746 | | struct fmt::formatter<doris::Status> { |
747 | | template <typename ParseContext> |
748 | 13 | constexpr auto parse(ParseContext& ctx) { |
749 | 13 | return ctx.begin(); |
750 | 13 | } |
751 | | |
752 | | template <typename FormatContext> |
753 | 13 | auto format(doris::Status const& status, FormatContext& ctx) { |
754 | 13 | return fmt::format_to(ctx.out(), "{}", status.to_string()); |
755 | 13 | } |
756 | | }; |