/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 | | #ifdef ENABLE_STACKTRACE |
21 | | #include "util/stack_util.h" |
22 | | #endif |
23 | | |
24 | | #include "common/expected.h" |
25 | | |
26 | | namespace doris { |
27 | | |
28 | | class PStatus; |
29 | | |
30 | | namespace ErrorCode { |
31 | | |
32 | | // E thrift_error_name, print_stacktrace |
33 | | #define APPLY_FOR_THRIFT_ERROR_CODES(TStatusError) \ |
34 | 1 | TStatusError(PUBLISH_TIMEOUT, false); \ |
35 | 1 | TStatusError(MEM_ALLOC_FAILED, true); \ |
36 | 1 | TStatusError(BUFFER_ALLOCATION_FAILED, true); \ |
37 | 1 | TStatusError(INVALID_ARGUMENT, false); \ |
38 | 1 | TStatusError(INVALID_JSON_PATH, false); \ |
39 | 1 | TStatusError(MINIMUM_RESERVATION_UNAVAILABLE, true); \ |
40 | 1 | TStatusError(CORRUPTION, true); \ |
41 | 1 | TStatusError(IO_ERROR, true); \ |
42 | 1 | TStatusError(NOT_FOUND, true); \ |
43 | 1 | TStatusError(ALREADY_EXIST, true); \ |
44 | 1 | TStatusError(NOT_IMPLEMENTED_ERROR, true); \ |
45 | 1 | TStatusError(END_OF_FILE, false); \ |
46 | 1 | TStatusError(INTERNAL_ERROR, true); \ |
47 | 1 | TStatusError(RUNTIME_ERROR, true); \ |
48 | 1 | TStatusError(CANCELLED, false); \ |
49 | 1 | TStatusError(ANALYSIS_ERROR, false); \ |
50 | 1 | TStatusError(MEM_LIMIT_EXCEEDED, false); \ |
51 | 1 | TStatusError(THRIFT_RPC_ERROR, true); \ |
52 | 1 | TStatusError(TIMEOUT, true); \ |
53 | 1 | TStatusError(TOO_MANY_TASKS, true); \ |
54 | 1 | TStatusError(UNINITIALIZED, false); \ |
55 | 1 | TStatusError(INCOMPLETE, false); \ |
56 | 1 | TStatusError(OLAP_ERR_VERSION_ALREADY_MERGED, false); \ |
57 | 1 | TStatusError(ABORTED, true); \ |
58 | 1 | TStatusError(DATA_QUALITY_ERROR, false); \ |
59 | 1 | TStatusError(LABEL_ALREADY_EXISTS, true); \ |
60 | 1 | TStatusError(NOT_AUTHORIZED, true); \ |
61 | 1 | TStatusError(BINLOG_DISABLE, false); \ |
62 | 1 | TStatusError(BINLOG_TOO_OLD_COMMIT_SEQ, false); \ |
63 | 1 | TStatusError(BINLOG_TOO_NEW_COMMIT_SEQ, false); \ |
64 | 1 | TStatusError(BINLOG_NOT_FOUND_DB, false); \ |
65 | 1 | TStatusError(BINLOG_NOT_FOUND_TABLE, false); \ |
66 | 1 | TStatusError(NETWORK_ERROR, false); \ |
67 | 1 | TStatusError(ILLEGAL_STATE, false); \ |
68 | 1 | TStatusError(SNAPSHOT_NOT_EXIST, true); \ |
69 | 1 | TStatusError(HTTP_ERROR, true); \ |
70 | 1 | TStatusError(TABLET_MISSING, true); \ |
71 | 1 | TStatusError(NOT_MASTER, true); \ |
72 | 1 | TStatusError(OBTAIN_LOCK_FAILED, false); \ |
73 | 1 | TStatusError(SNAPSHOT_EXPIRED, false); \ |
74 | 1 | TStatusError(DELETE_BITMAP_LOCK_ERROR, false); |
75 | | // E error_name, error_code, print_stacktrace |
76 | | #define APPLY_FOR_OLAP_ERROR_CODES(E) \ |
77 | 1 | E(OK, 0, false); \ |
78 | 1 | E(CALL_SEQUENCE_ERROR, -202, true); \ |
79 | 1 | E(BUFFER_OVERFLOW, -204, true); \ |
80 | 1 | E(CONFIG_ERROR, -205, true); \ |
81 | 1 | E(INIT_FAILED, -206, true); \ |
82 | 1 | E(INVALID_SCHEMA, -207, true); \ |
83 | 1 | E(CHECKSUM_ERROR, -208, true); \ |
84 | 1 | E(SIGNATURE_ERROR, -209, true); \ |
85 | 1 | E(CATCH_EXCEPTION, -210, true); \ |
86 | 1 | E(PARSE_PROTOBUF_ERROR, -211, true); \ |
87 | 1 | E(SERIALIZE_PROTOBUF_ERROR, -212, true); \ |
88 | 1 | E(WRITE_PROTOBUF_ERROR, -213, true); \ |
89 | 1 | E(VERSION_NOT_EXIST, -214, false); \ |
90 | 1 | E(TABLE_NOT_FOUND, -215, true); \ |
91 | 1 | E(TRY_LOCK_FAILED, -216, false); \ |
92 | 1 | E(EXCEEDED_LIMIT, -217, false); \ |
93 | 1 | E(OUT_OF_BOUND, -218, false); \ |
94 | 1 | E(INVALID_ROOT_PATH, -222, true); \ |
95 | 1 | E(NO_AVAILABLE_ROOT_PATH, -223, true); \ |
96 | 1 | E(CHECK_LINES_ERROR, -224, true); \ |
97 | 1 | E(INVALID_CLUSTER_INFO, -225, true); \ |
98 | 1 | E(TRANSACTION_NOT_EXIST, -226, false); \ |
99 | 1 | E(DISK_FAILURE, -227, true); \ |
100 | 1 | E(TRANSACTION_ALREADY_COMMITTED, -228, false); \ |
101 | 1 | E(TRANSACTION_ALREADY_VISIBLE, -229, false); \ |
102 | 1 | E(VERSION_ALREADY_MERGED, -230, true); \ |
103 | 1 | E(LZO_DISABLED, -231, true); \ |
104 | 1 | E(DISK_REACH_CAPACITY_LIMIT, -232, true); \ |
105 | 1 | E(TOO_MANY_TRANSACTIONS, -233, false); \ |
106 | 1 | E(INVALID_SNAPSHOT_VERSION, -234, true); \ |
107 | 1 | E(TOO_MANY_VERSION, -235, false); \ |
108 | 1 | E(NOT_INITIALIZED, -236, true); \ |
109 | 1 | E(ALREADY_CANCELLED, -237, false); \ |
110 | 1 | E(TOO_MANY_SEGMENTS, -238, false); \ |
111 | 1 | E(ALREADY_CLOSED, -239, false); \ |
112 | 1 | E(SERVICE_UNAVAILABLE, -240, true); \ |
113 | 1 | E(NEED_SEND_AGAIN, -241, false); \ |
114 | 1 | E(OS_ERROR, -242, true); \ |
115 | 1 | E(DIR_NOT_EXIST, -243, true); \ |
116 | 1 | E(FILE_NOT_EXIST, -244, true); \ |
117 | 1 | E(CREATE_FILE_ERROR, -245, true); \ |
118 | 1 | E(STL_ERROR, -246, true); \ |
119 | 1 | E(MUTEX_ERROR, -247, true); \ |
120 | 1 | E(PTHREAD_ERROR, -248, true); \ |
121 | 1 | E(UB_FUNC_ERROR, -250, true); \ |
122 | 1 | E(COMPRESS_ERROR, -251, true); \ |
123 | 1 | E(DECOMPRESS_ERROR, -252, true); \ |
124 | 1 | E(FILE_ALREADY_EXIST, -253, true); \ |
125 | 1 | E(BAD_CAST, -254, true); \ |
126 | 1 | E(ARITHMETIC_OVERFLOW_ERRROR, -255, false); \ |
127 | 1 | E(PERMISSION_DENIED, -256, false); \ |
128 | 1 | E(CE_CMD_PARAMS_ERROR, -300, true); \ |
129 | 1 | E(CE_BUFFER_TOO_SMALL, -301, true); \ |
130 | 1 | E(CE_CMD_NOT_VALID, -302, true); \ |
131 | 1 | E(CE_LOAD_TABLE_ERROR, -303, true); \ |
132 | 1 | E(CE_NOT_FINISHED, -304, true); \ |
133 | 1 | E(CE_TABLET_ID_EXIST, -305, true); \ |
134 | 1 | E(TABLE_VERSION_DUPLICATE_ERROR, -400, true); \ |
135 | 1 | E(TABLE_VERSION_INDEX_MISMATCH_ERROR, -401, true); \ |
136 | 1 | E(TABLE_INDEX_VALIDATE_ERROR, -402, true); \ |
137 | 1 | E(TABLE_INDEX_FIND_ERROR, -403, true); \ |
138 | 1 | E(TABLE_CREATE_FROM_HEADER_ERROR, -404, true); \ |
139 | 1 | E(TABLE_CREATE_META_ERROR, -405, true); \ |
140 | 1 | E(TABLE_ALREADY_DELETED_ERROR, -406, false); \ |
141 | 1 | E(ENGINE_INSERT_EXISTS_TABLE, -500, true); \ |
142 | 1 | E(ENGINE_DROP_NOEXISTS_TABLE, -501, true); \ |
143 | 1 | E(ENGINE_LOAD_INDEX_TABLE_ERROR, -502, true); \ |
144 | 1 | E(TABLE_INSERT_DUPLICATION_ERROR, -503, true); \ |
145 | 1 | E(DELETE_VERSION_ERROR, -504, true); \ |
146 | 1 | E(GC_SCAN_PATH_ERROR, -505, true); \ |
147 | 1 | E(ENGINE_INSERT_OLD_TABLET, -506, true); \ |
148 | 1 | E(FETCH_OTHER_ERROR, -600, true); \ |
149 | 1 | E(FETCH_TABLE_NOT_EXIST, -601, true); \ |
150 | 1 | E(FETCH_VERSION_ERROR, -602, true); \ |
151 | 1 | E(FETCH_SCHEMA_ERROR, -603, true); \ |
152 | 1 | E(FETCH_COMPRESSION_ERROR, -604, true); \ |
153 | 1 | E(FETCH_CONTEXT_NOT_EXIST, -605, true); \ |
154 | 1 | E(FETCH_GET_READER_PARAMS_ERR, -606, true); \ |
155 | 1 | E(FETCH_SAVE_SESSION_ERR, -607, true); \ |
156 | 1 | E(FETCH_MEMORY_EXCEEDED, -608, true); \ |
157 | 1 | E(READER_IS_UNINITIALIZED, -700, true); \ |
158 | 1 | E(READER_GET_ITERATOR_ERROR, -701, true); \ |
159 | 1 | E(CAPTURE_ROWSET_READER_ERROR, -702, true); \ |
160 | 1 | E(READER_READING_ERROR, -703, true); \ |
161 | 1 | E(READER_INITIALIZE_ERROR, -704, true); \ |
162 | 1 | E(BE_VERSION_NOT_MATCH, -800, true); \ |
163 | 1 | E(BE_REPLACE_VERSIONS_ERROR, -801, true); \ |
164 | 1 | E(BE_MERGE_ERROR, -802, true); \ |
165 | 1 | E(CAPTURE_ROWSET_ERROR, -804, true); \ |
166 | 1 | E(BE_SAVE_HEADER_ERROR, -805, true); \ |
167 | 1 | E(BE_INIT_OLAP_DATA, -806, true); \ |
168 | 1 | E(BE_TRY_OBTAIN_VERSION_LOCKS, -807, true); \ |
169 | 1 | E(BE_NO_SUITABLE_VERSION, -808, false); \ |
170 | 1 | E(BE_INVALID_NEED_MERGED_VERSIONS, -810, true); \ |
171 | 1 | E(BE_ERROR_DELETE_ACTION, -811, true); \ |
172 | 1 | E(BE_SEGMENTS_OVERLAPPING, -812, true); \ |
173 | 1 | E(PUSH_INIT_ERROR, -900, true); \ |
174 | 1 | E(PUSH_VERSION_INCORRECT, -902, true); \ |
175 | 1 | E(PUSH_SCHEMA_MISMATCH, -903, true); \ |
176 | 1 | E(PUSH_CHECKSUM_ERROR, -904, true); \ |
177 | 1 | E(PUSH_ACQUIRE_DATASOURCE_ERROR, -905, true); \ |
178 | 1 | E(PUSH_CREAT_CUMULATIVE_ERROR, -906, true); \ |
179 | 1 | E(PUSH_BUILD_DELTA_ERROR, -907, true); \ |
180 | 1 | E(PUSH_VERSION_ALREADY_EXIST, -908, false); \ |
181 | 1 | E(PUSH_TABLE_NOT_EXIST, -909, true); \ |
182 | 1 | E(PUSH_INPUT_DATA_ERROR, -910, true); \ |
183 | 1 | E(PUSH_TRANSACTION_ALREADY_EXIST, -911, false); \ |
184 | 1 | E(PUSH_BATCH_PROCESS_REMOVED, -912, true); \ |
185 | 1 | E(PUSH_COMMIT_ROWSET, -913, true); \ |
186 | 1 | E(PUSH_ROWSET_NOT_FOUND, -914, true); \ |
187 | 1 | E(INDEX_LOAD_ERROR, -1000, true); \ |
188 | 1 | E(INDEX_CHECKSUM_ERROR, -1002, true); \ |
189 | 1 | E(INDEX_DELTA_PRUNING, -1003, true); \ |
190 | 1 | E(DATA_ROW_BLOCK_ERROR, -1100, true); \ |
191 | 1 | E(DATA_FILE_TYPE_ERROR, -1101, true); \ |
192 | 1 | E(WRITER_INDEX_WRITE_ERROR, -1200, true); \ |
193 | 1 | E(WRITER_DATA_WRITE_ERROR, -1201, true); \ |
194 | 1 | E(WRITER_ROW_BLOCK_ERROR, -1202, true); \ |
195 | 1 | E(WRITER_SEGMENT_NOT_FINALIZED, -1203, true); \ |
196 | 1 | E(ROWBLOCK_DECOMPRESS_ERROR, -1300, true); \ |
197 | 1 | E(ROWBLOCK_FIND_ROW_EXCEPTION, -1301, true); \ |
198 | 1 | E(HEADER_ADD_VERSION, -1400, true); \ |
199 | 1 | E(HEADER_DELETE_VERSION, -1401, true); \ |
200 | 1 | E(HEADER_ADD_PENDING_DELTA, -1402, true); \ |
201 | 1 | E(HEADER_ADD_INCREMENTAL_VERSION, -1403, true); \ |
202 | 1 | E(HEADER_INVALID_FLAG, -1404, true); \ |
203 | 1 | E(HEADER_LOAD_INVALID_KEY, -1408, true); \ |
204 | 1 | E(HEADER_LOAD_JSON_HEADER, -1410, true); \ |
205 | 1 | E(HEADER_INIT_FAILED, -1411, true); \ |
206 | 1 | E(HEADER_PB_PARSE_FAILED, -1412, true); \ |
207 | 1 | E(HEADER_HAS_PENDING_DATA, -1413, true); \ |
208 | 1 | E(SCHEMA_SCHEMA_INVALID, -1500, true); \ |
209 | 1 | E(SCHEMA_SCHEMA_FIELD_INVALID, -1501, true); \ |
210 | 1 | E(ALTER_MULTI_TABLE_ERR, -1600, true); \ |
211 | 1 | E(ALTER_DELTA_DOES_NOT_EXISTS, -1601, true); \ |
212 | 1 | E(ALTER_STATUS_ERR, -1602, true); \ |
213 | 1 | E(PREVIOUS_SCHEMA_CHANGE_NOT_FINISHED, -1603, true); \ |
214 | 1 | E(SCHEMA_CHANGE_INFO_INVALID, -1604, true); \ |
215 | 1 | E(QUERY_SPLIT_KEY_ERR, -1605, true); \ |
216 | 1 | E(DATA_QUALITY_ERR, -1606, false); \ |
217 | 1 | E(COLUMN_DATA_LOAD_BLOCK, -1700, true); \ |
218 | 1 | E(COLUMN_DATA_RECORD_INDEX, -1701, true); \ |
219 | 1 | E(COLUMN_DATA_MAKE_FILE_HEADER, -1702, true); \ |
220 | 1 | E(COLUMN_DATA_READ_VAR_INT, -1703, true); \ |
221 | 1 | E(COLUMN_DATA_PATCH_LIST_NUM, -1704, true); \ |
222 | 1 | E(COLUMN_READ_STREAM, -1706, true); \ |
223 | 1 | E(COLUMN_STREAM_NOT_EXIST, -1716, true); \ |
224 | 1 | E(COLUMN_VALUE_NULL, -1717, true); \ |
225 | 1 | E(COLUMN_SEEK_ERROR, -1719, true); \ |
226 | 1 | E(COLUMN_NO_MATCH_OFFSETS_SIZE, -1720, true); \ |
227 | 1 | E(COLUMN_NO_MATCH_FILTER_SIZE, -1721, true); \ |
228 | 1 | E(DELETE_INVALID_CONDITION, -1900, true); \ |
229 | 1 | E(DELETE_UPDATE_HEADER_FAILED, -1901, true); \ |
230 | 1 | E(DELETE_SAVE_HEADER_FAILED, -1902, true); \ |
231 | 1 | E(DELETE_INVALID_PARAMETERS, -1903, true); \ |
232 | 1 | E(DELETE_INVALID_VERSION, -1904, true); \ |
233 | 1 | E(CUMULATIVE_NO_SUITABLE_VERSION, -2000, false); \ |
234 | 1 | E(CUMULATIVE_REPEAT_INIT, -2001, true); \ |
235 | 1 | E(CUMULATIVE_INVALID_PARAMETERS, -2002, true); \ |
236 | 1 | E(CUMULATIVE_FAILED_ACQUIRE_DATA_SOURCE, -2003, true); \ |
237 | 1 | E(CUMULATIVE_INVALID_NEED_MERGED_VERSIONS, -2004, true); \ |
238 | 1 | E(CUMULATIVE_ERROR_DELETE_ACTION, -2005, true); \ |
239 | 1 | E(CUMULATIVE_MISS_VERSION, -2006, true); \ |
240 | 1 | E(FULL_NO_SUITABLE_VERSION, -2008, false); \ |
241 | 1 | E(FULL_MISS_VERSION, -2009, true); \ |
242 | 1 | E(META_INVALID_ARGUMENT, -3000, true); \ |
243 | 1 | E(META_OPEN_DB_ERROR, -3001, true); \ |
244 | 1 | E(META_KEY_NOT_FOUND, -3002, false); \ |
245 | 1 | E(META_GET_ERROR, -3003, true); \ |
246 | 1 | E(META_PUT_ERROR, -3004, true); \ |
247 | 1 | E(META_ITERATOR_ERROR, -3005, true); \ |
248 | 1 | E(META_DELETE_ERROR, -3006, true); \ |
249 | 1 | E(META_ALREADY_EXIST, -3007, true); \ |
250 | 1 | E(ROWSET_WRITER_INIT, -3100, true); \ |
251 | 1 | E(ROWSET_SAVE_FAILED, -3101, true); \ |
252 | 1 | E(ROWSET_GENERATE_ID_FAILED, -3102, true); \ |
253 | 1 | E(ROWSET_DELETE_FILE_FAILED, -3103, true); \ |
254 | 1 | E(ROWSET_BUILDER_INIT, -3104, true); \ |
255 | 1 | E(ROWSET_TYPE_NOT_FOUND, -3105, true); \ |
256 | 1 | E(ROWSET_ALREADY_EXIST, -3106, true); \ |
257 | 1 | E(ROWSET_CREATE_READER, -3107, true); \ |
258 | 1 | E(ROWSET_INVALID, -3108, true); \ |
259 | 1 | E(ROWSET_READER_INIT, -3110, true); \ |
260 | 1 | E(ROWSET_INVALID_STATE_TRANSITION, -3112, true); \ |
261 | 1 | E(STRING_OVERFLOW_IN_VEC_ENGINE, -3113, true); \ |
262 | 1 | E(ROWSET_ADD_MIGRATION_V2, -3114, true); \ |
263 | 1 | E(PUBLISH_VERSION_NOT_CONTINUOUS, -3115, false); \ |
264 | 1 | E(ROWSET_RENAME_FILE_FAILED, -3116, false); \ |
265 | 1 | E(SEGCOMPACTION_INIT_READER, -3117, false); \ |
266 | 1 | E(SEGCOMPACTION_INIT_WRITER, -3118, false); \ |
267 | 1 | E(SEGCOMPACTION_FAILED, -3119, false); \ |
268 | 1 | E(PIP_WAIT_FOR_RF, -3120, false); \ |
269 | 1 | E(PIP_WAIT_FOR_SC, -3121, false); \ |
270 | 1 | E(ROWSET_ADD_TO_BINLOG_FAILED, -3122, true); \ |
271 | 1 | E(ROWSET_BINLOG_NOT_ONLY_ONE_VERSION, -3123, true); \ |
272 | 1 | E(INVERTED_INDEX_INVALID_PARAMETERS, -6000, false); \ |
273 | 1 | E(INVERTED_INDEX_NOT_SUPPORTED, -6001, false); \ |
274 | 1 | E(INVERTED_INDEX_CLUCENE_ERROR, -6002, false); \ |
275 | 1 | E(INVERTED_INDEX_FILE_NOT_FOUND, -6003, false); \ |
276 | 1 | E(INVERTED_INDEX_BYPASS, -6004, false); \ |
277 | 1 | E(INVERTED_INDEX_NO_TERMS, -6005, false); \ |
278 | 1 | E(INVERTED_INDEX_RENAME_FILE_FAILED, -6006, true); \ |
279 | 1 | E(INVERTED_INDEX_EVALUATE_SKIPPED, -6007, false); \ |
280 | 1 | E(INVERTED_INDEX_BUILD_WAITTING, -6008, false); \ |
281 | 1 | E(INVERTED_INDEX_NOT_IMPLEMENTED, -6009, false); \ |
282 | 1 | E(INVERTED_INDEX_COMPACTION_ERROR, -6010, false); \ |
283 | 1 | E(INVERTED_INDEX_ANALYZER_ERROR, -6011, false); \ |
284 | 1 | E(KEY_NOT_FOUND, -7000, false); \ |
285 | 1 | E(KEY_ALREADY_EXISTS, -7001, false); \ |
286 | 1 | E(ENTRY_NOT_FOUND, -7002, false); \ |
287 | 1 | E(CGROUP_ERROR, -7411, false); |
288 | | |
289 | | // Define constexpr int error_code_name = error_code_value |
290 | | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) constexpr int NAME = ERRORCODE; |
291 | | APPLY_FOR_OLAP_ERROR_CODES(M) |
292 | | #undef M |
293 | | |
294 | | #define MM(name, ENABLESTACKTRACE) constexpr int name = TStatusCode::name; |
295 | | APPLY_FOR_THRIFT_ERROR_CODES(MM) |
296 | | #undef MM |
297 | | |
298 | | constexpr int MAX_ERROR_CODE_DEFINE_NUM = 65536; |
299 | | struct ErrorCodeState { |
300 | | int16_t error_code = 0; |
301 | | bool stacktrace = true; |
302 | | std::string description; |
303 | | size_t count = 0; // Used for count the number of error happens |
304 | | std::mutex mutex; // lock guard for count state |
305 | | }; |
306 | | extern ErrorCodeState error_states[MAX_ERROR_CODE_DEFINE_NUM]; |
307 | | |
308 | | class ErrorCodeInitializer { |
309 | | public: |
310 | 1 | ErrorCodeInitializer(int temp) : signal_value(temp) { |
311 | 65.5k | for (auto& error_state : error_states) { |
312 | 65.5k | error_state.error_code = 0; |
313 | 65.5k | } |
314 | 1 | #define M(NAME, ENABLESTACKTRACE) \ |
315 | 41 | error_states[TStatusCode::NAME].stacktrace = ENABLESTACKTRACE; \ |
316 | 41 | error_states[TStatusCode::NAME].description = #NAME; \ |
317 | 41 | error_states[TStatusCode::NAME].error_code = TStatusCode::NAME; |
318 | 41 | APPLY_FOR_THRIFT_ERROR_CODES(M) |
319 | 1 | #undef M |
320 | | // In status.h, if error code > 0, then it means it will be used in TStatusCode and will |
321 | | // also be used in FE. |
322 | | // Other error codes that with error code < 0, will only be used in BE. |
323 | | // We use abs(error code) as the index in error_states, so that these two kinds of error |
324 | | // codes MUST not have overlap. |
325 | | // Add an assert here to make sure the code in TStatusCode and other error code are not |
326 | | // overlapped. |
327 | 1 | #define M(NAME, ERRORCODE, ENABLESTACKTRACE) \ |
328 | 211 | assert(error_states[abs(ERRORCODE)].error_code == 0); \ |
329 | 211 | error_states[abs(ERRORCODE)].stacktrace = ENABLESTACKTRACE; \ |
330 | 211 | error_states[abs(ERRORCODE)].error_code = ERRORCODE; |
331 | 211 | APPLY_FOR_OLAP_ERROR_CODES(M) |
332 | 1 | #undef M |
333 | 1 | } |
334 | | |
335 | 1 | void check_init() const { |
336 | | //the signal value is 0, it means the global error states not inited, it's logical error |
337 | | // DO NOT use dcheck here, because dcheck depend on glog, and glog maybe not inited at this time. |
338 | 1 | if (signal_value == 0) { |
339 | 0 | exit(-1); |
340 | 0 | } |
341 | 1 | } |
342 | | |
343 | | private: |
344 | | int signal_value = 0; |
345 | | }; |
346 | | |
347 | | extern ErrorCodeInitializer error_code_init; |
348 | | } // namespace ErrorCode |
349 | | |
350 | | class [[nodiscard]] Status { |
351 | | public: |
352 | 35.3M | Status() : _code(ErrorCode::OK), _err_msg(nullptr) {} |
353 | | |
354 | | // used to convert Exception to Status |
355 | 0 | Status(int code, std::string msg, std::string stack) : _code(code) { |
356 | 0 | _err_msg = std::make_unique<ErrMsg>(); |
357 | 0 | _err_msg->_msg = msg; |
358 | | #ifdef ENABLE_STACKTRACE |
359 | | _err_msg->_stack = stack; |
360 | | #endif |
361 | 0 | } |
362 | | |
363 | | // copy c'tor makes copy of error detail so Status can be returned by value |
364 | 206k | Status(const Status& rhs) { *this = rhs; } |
365 | | |
366 | | // move c'tor |
367 | 20.8k | Status(Status&& rhs) noexcept = default; |
368 | | |
369 | | // same as copy c'tor |
370 | 206k | Status& operator=(const Status& rhs) { |
371 | 206k | _code = rhs._code; |
372 | 206k | if (rhs._err_msg) { |
373 | 148 | _err_msg = std::make_unique<ErrMsg>(*rhs._err_msg); |
374 | 148 | } |
375 | 206k | return *this; |
376 | 206k | } |
377 | | |
378 | | // move assign |
379 | 2.83M | Status& operator=(Status&& rhs) noexcept { |
380 | 2.83M | _code = rhs._code; |
381 | 2.83M | if (rhs._err_msg) { |
382 | 939 | _err_msg = std::move(rhs._err_msg); |
383 | 939 | } |
384 | 2.83M | return *this; |
385 | 2.83M | } |
386 | | |
387 | | template <bool stacktrace = true> |
388 | 2 | Status static create(const TStatus& status) { |
389 | 2 | return Error<stacktrace>( |
390 | 2 | status.status_code, |
391 | 2 | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); |
392 | 2 | } _ZN5doris6Status6createILb1EEES0_RKNS_7TStatusE Line | Count | Source | 388 | 2 | Status static create(const TStatus& status) { | 389 | 2 | return Error<stacktrace>( | 390 | 2 | status.status_code, | 391 | 2 | "TStatus: " + (status.error_msgs.empty() ? "" : status.error_msgs[0])); | 392 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7TStatusE |
393 | | |
394 | | template <bool stacktrace = true> |
395 | 40 | Status static create(const PStatus& pstatus) { |
396 | 40 | return Error<stacktrace>( |
397 | 40 | pstatus.status_code(), |
398 | 40 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); |
399 | 40 | } _ZN5doris6Status6createILb1EEES0_RKNS_7PStatusE Line | Count | Source | 395 | 40 | Status static create(const PStatus& pstatus) { | 396 | 40 | return Error<stacktrace>( | 397 | 40 | pstatus.status_code(), | 398 | 40 | "PStatus: " + (pstatus.error_msgs_size() == 0 ? "" : pstatus.error_msgs(0))); | 399 | 40 | } |
Unexecuted instantiation: _ZN5doris6Status6createILb0EEES0_RKNS_7PStatusE |
400 | | |
401 | | template <int code, bool stacktrace = true, typename... Args> |
402 | 23.3k | Status static Error(std::string_view msg, Args&&... args) { |
403 | 23.3k | Status status; |
404 | 23.3k | status._code = code; |
405 | 23.3k | status._err_msg = std::make_unique<ErrMsg>(); |
406 | 23.3k | if constexpr (sizeof...(args) == 0) { |
407 | 5.57k | status._err_msg->_msg = msg; |
408 | 5.57k | } else { |
409 | 5.57k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
410 | 5.57k | } |
411 | | #ifdef ENABLE_STACKTRACE |
412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { |
413 | | // Delete the first one frame pointers, which are inside the status.h |
414 | | status._err_msg->_stack = get_stack_trace(1); |
415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
416 | | } |
417 | | #endif |
418 | 23.3k | return status; |
419 | 23.3k | } Unexecuted instantiation: _ZN5doris6Status5ErrorILi5ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 105 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 105 | Status status; | 404 | 105 | status._code = code; | 405 | 105 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 105 | if constexpr (sizeof...(args) == 0) { | 407 | 105 | status._err_msg->_msg = msg; | 408 | 105 | } else { | 409 | 105 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 105 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 105 | return status; | 419 | 105 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3112ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 30 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 30 | Status status; | 404 | 30 | status._code = code; | 405 | 30 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 30 | if constexpr (sizeof...(args) == 0) { | 407 | 30 | status._err_msg->_msg = msg; | 408 | 30 | } else { | 409 | 30 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 30 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 30 | return status; | 419 | 30 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRKtEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin7000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 20 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 20 | Status status; | 404 | 20 | status._code = code; | 405 | 20 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 20 | if constexpr (sizeof...(args) == 0) { | 407 | 20 | status._err_msg->_msg = msg; | 408 | 20 | } else { | 409 | 20 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 20 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 20 | return status; | 419 | 20 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 47 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 47 | Status status; | 404 | 47 | status._code = code; | 405 | 47 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 47 | if constexpr (sizeof...(args) == 0) { | 407 | 47 | status._err_msg->_msg = msg; | 408 | 47 | } else { | 409 | 47 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 47 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 47 | return status; | 419 | 47 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6009ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 12 | Status status; | 404 | 12 | status._code = code; | 405 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 12 | if constexpr (sizeof...(args) == 0) { | 407 | 12 | status._err_msg->_msg = msg; | 408 | 12 | } else { | 409 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 12 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 12 | return status; | 419 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJiRA15_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
_ZN5doris6Status5ErrorILin206ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 4 | Status status; | 404 | 4 | status._code = code; | 405 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 4 | if constexpr (sizeof...(args) == 0) { | 407 | 4 | status._err_msg->_msg = msg; | 408 | 4 | } else { | 409 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 4 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 4 | return status; | 419 | 4 | } |
_ZN5doris6Status5ErrorILin3002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 38 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 38 | Status status; | 404 | 38 | status._code = code; | 405 | 38 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 38 | if constexpr (sizeof...(args) == 0) { | 407 | 38 | status._err_msg->_msg = msg; | 408 | 38 | } else { | 409 | 38 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 38 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 38 | return status; | 419 | 38 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
_ZN5doris6Status5ErrorILi30ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 253 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 253 | Status status; | 404 | 253 | status._code = code; | 405 | 253 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 253 | if constexpr (sizeof...(args) == 0) { | 407 | 253 | status._err_msg->_msg = msg; | 408 | 253 | } else { | 409 | 253 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 253 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 253 | return status; | 419 | 253 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6010ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi12ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 10 | Status status; | 404 | 10 | status._code = code; | 405 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 10 | if constexpr (sizeof...(args) == 0) { | 407 | 10 | status._err_msg->_msg = msg; | 408 | 10 | } else { | 409 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 10 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 10 | return status; | 419 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 11.4k | Status static Error(std::string_view msg, Args&&... args) { | 403 | 11.4k | Status status; | 404 | 11.4k | status._code = code; | 405 | 11.4k | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 11.4k | if constexpr (sizeof...(args) == 0) { | 407 | 11.4k | status._err_msg->_msg = msg; | 408 | 11.4k | } else { | 409 | 11.4k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 11.4k | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 11.4k | return status; | 419 | 11.4k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi30ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 5.37k | Status static Error(std::string_view msg, Args&&... args) { | 403 | 5.37k | Status status; | 404 | 5.37k | status._code = code; | 405 | 5.37k | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 5.37k | if constexpr (sizeof...(args) == 0) { | 407 | 5.37k | status._err_msg->_msg = msg; | 408 | 5.37k | } else { | 409 | 5.37k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 5.37k | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 5.37k | return status; | 419 | 5.37k | } |
_ZN5doris6Status5ErrorILi31ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 7 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 7 | Status status; | 404 | 7 | status._code = code; | 405 | 7 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 7 | if constexpr (sizeof...(args) == 0) { | 407 | 7 | status._err_msg->_msg = msg; | 408 | 7 | } else { | 409 | 7 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 7 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 7 | return status; | 419 | 7 | } |
_ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi1ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 11 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 11 | Status status; | 404 | 11 | status._code = code; | 405 | 11 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 11 | if constexpr (sizeof...(args) == 0) { | 407 | 11 | status._err_msg->_msg = msg; | 408 | 11 | } else { | 409 | 11 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 11 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 11 | return status; | 419 | 11 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7411ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 7 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 7 | Status status; | 404 | 7 | status._code = code; | 405 | 7 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 7 | if constexpr (sizeof...(args) == 0) { | 407 | 7 | status._err_msg->_msg = msg; | 408 | 7 | } else { | 409 | 7 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 7 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 7 | return status; | 419 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb1EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi3ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA5_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRPKcRbEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA8_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 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 | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 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_ _ZN5doris6Status5ErrorILi6ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 58 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 58 | Status status; | 404 | 58 | status._code = code; | 405 | 58 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 58 | if constexpr (sizeof...(args) == 0) { | 407 | 58 | status._err_msg->_msg = msg; | 408 | 58 | } else { | 409 | 58 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 58 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 58 | return status; | 419 | 58 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi31ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 39 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 39 | Status status; | 404 | 39 | status._code = code; | 405 | 39 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 39 | if constexpr (sizeof...(args) == 0) { | 407 | 39 | status._err_msg->_msg = msg; | 408 | 39 | } else { | 409 | 39 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 39 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 39 | return status; | 419 | 39 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 5 | Status status; | 404 | 5 | status._code = code; | 405 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 5 | if constexpr (sizeof...(args) == 0) { | 407 | 5 | status._err_msg->_msg = msg; | 408 | 5 | } else { | 409 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 5 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 5 | return status; | 419 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io9FileBlock5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi34ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin256ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws2S38S3ErrorsESC_EEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRSt17basic_string_viewIcSt11char_traitsIcEERKNSt7__cxx1112basic_stringIcS4_SaIcEEESC_N3Aws4Http16HttpResponseCodeENSD_2S38S3ErrorsESC_EEES0_S5_DpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_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 | 402 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 5 | Status status; | 404 | 5 | status._code = code; | 405 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 5 | if constexpr (sizeof...(args) == 0) { | 407 | 5 | status._err_msg->_msg = msg; | 408 | 5 | } else { | 409 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 5 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 5 | return status; | 419 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RlS8_SA_SA_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRS0_mRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRS0_miNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin808ELb1EJlmRdRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3000ELb1EJRNS_11TabletStateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2006ELb1EJllllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJlRlRKlS4_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2002ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 10 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 10 | Status status; | 404 | 10 | status._code = code; | 405 | 10 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 10 | if constexpr (sizeof...(args) == 0) { | 407 | 10 | status._err_msg->_msg = msg; | 408 | 10 | } else { | 409 | 10 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 10 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 10 | return status; | 419 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_PKcEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 25 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 25 | Status status; | 404 | 25 | status._code = code; | 405 | 25 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 25 | if constexpr (sizeof...(args) == 0) { | 407 | 25 | status._err_msg->_msg = msg; | 408 | 25 | } else { | 409 | 25 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 25 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 25 | return status; | 419 | 25 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1900ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1602ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6000ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin236ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin239ELb1EJRlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin704ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3001ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3004ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3006ELb1EJRKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS8_EES8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3005ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlRNS_14CompactionTypeERllNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3103ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin253ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin242ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3110ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3108ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3105ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3116ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6006ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_RiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3119ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiEmEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin238ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRSt6atomicIiESC_SC_mEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1201ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin3002ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 4 | Status status; | 404 | 4 | status._code = code; | 405 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 4 | if constexpr (sizeof...(args) == 0) { | 407 | 4 | status._err_msg->_msg = msg; | 408 | 4 | } else { | 409 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 4 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 4 | return status; | 419 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3123ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin212ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin211ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin206ELb1EJjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin224ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin608ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3118ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3117ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILin7002ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 8 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 8 | Status status; | 404 | 8 | status._code = code; | 405 | 8 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 8 | if constexpr (sizeof...(args) == 0) { | 407 | 8 | status._err_msg->_msg = msg; | 408 | 8 | } else { | 409 | 8 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 8 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 8 | return status; | 419 | 8 | } |
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _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 | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 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$_1EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status5ErrorILi6ELb1EJRKmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin6003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 19 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 19 | Status status; | 404 | 19 | status._code = code; | 405 | 19 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 19 | if constexpr (sizeof...(args) == 0) { | 407 | 19 | status._err_msg->_msg = msg; | 408 | 19 | } else { | 409 | 19 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 19 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 19 | return status; | 419 | 19 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6003ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6003ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin6002ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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: _ZN5doris6Status5ErrorILin6011ELb1EJPKcEEES0_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 | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjSA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin7001ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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: _ZN5doris6Status5ErrorILin207ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJRiS2_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin235ELb1EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin215ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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_ 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: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin504ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJRKlllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin230ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJlRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin702ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin908ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin300ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi39ELb0EJlRllEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin804ELb0EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2008ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin2009ELb0EJllllllEEES0_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: _ZN5doris6Status5ErrorILin244ELb1EJRNSt7__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 | 402 | 11 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 11 | Status status; | 404 | 11 | status._code = code; | 405 | 11 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 11 | if constexpr (sizeof...(args) == 0) { | 407 | 11 | status._err_msg->_msg = msg; | 408 | 11 | } else { | 409 | 11 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 11 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 11 | return status; | 419 | 11 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin1410ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKimNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRmmlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
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: _ZN5doris6Status5ErrorILin244ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ 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: _ZN5doris6Status5ErrorILi11ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_lEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi3ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin900ELb1EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKlS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3115ELb1EJRlS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin914ELb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin909ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin216ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi35ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1604ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJlEEES0_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 | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILin226ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin3122ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlS8_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin226ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILin228ELb1EJRlS2_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_RKS8_EEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiPcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1401ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1.94k | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1.94k | Status status; | 404 | 1.94k | status._code = code; | 405 | 1.94k | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1.94k | if constexpr (sizeof...(args) == 0) { | 407 | 1.94k | status._err_msg->_msg = msg; | 408 | 1.94k | } else { | 409 | 1.94k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1.94k | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1.94k | return status; | 419 | 1.94k | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi42ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 12 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 12 | Status status; | 404 | 12 | status._code = code; | 405 | 12 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 12 | if constexpr (sizeof...(args) == 0) { | 407 | 12 | status._err_msg->_msg = msg; | 408 | 12 | } else { | 409 | 12 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 12 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 12 | return status; | 419 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi8ELb0EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_mEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi42ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 354 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 354 | Status status; | 404 | 354 | status._code = code; | 405 | 354 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 354 | if constexpr (sizeof...(args) == 0) { | 407 | 354 | status._err_msg->_msg = msg; | 408 | 354 | } else { | 409 | 354 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 354 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 354 | return status; | 419 | 354 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi32ELb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 402 | 2 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2 | Status status; | 404 | 2 | status._code = code; | 405 | 2 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2 | if constexpr (sizeof...(args) == 0) { | 407 | 2 | status._err_msg->_msg = msg; | 408 | 2 | } else { | 409 | 2 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2 | return status; | 419 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi31ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi33ELb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 17 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 17 | Status status; | 404 | 17 | status._code = code; | 405 | 17 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 17 | if constexpr (sizeof...(args) == 0) { | 407 | 17 | status._err_msg->_msg = msg; | 408 | 17 | } else { | 409 | 17 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 17 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 17 | return status; | 419 | 17 | } |
_ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRKlEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi16ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi74ELb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin240ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi11ELb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILin7411ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin7411ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRA10_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 1 | } |
_ZN5doris6Status5ErrorILi39ELb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Line | Count | Source | 402 | 1 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 1 | Status status; | 404 | 1 | status._code = code; | 405 | 1 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 1 | if constexpr (sizeof...(args) == 0) { | 407 | 1 | status._err_msg->_msg = msg; | 408 | 1 | } else { | 409 | 1 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 1 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 1 | return status; | 419 | 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 | 402 | 582 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 582 | Status status; | 404 | 582 | status._code = code; | 405 | 582 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 582 | if constexpr (sizeof...(args) == 0) { | 407 | 582 | status._err_msg->_msg = msg; | 408 | 582 | } else { | 409 | 582 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 582 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 582 | return status; | 419 | 582 | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 2.73k | Status static Error(std::string_view msg, Args&&... args) { | 403 | 2.73k | Status status; | 404 | 2.73k | status._code = code; | 405 | 2.73k | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 2.73k | if constexpr (sizeof...(args) == 0) { | 407 | 2.73k | status._err_msg->_msg = msg; | 408 | 2.73k | } else { | 409 | 2.73k | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 2.73k | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 2.73k | return status; | 419 | 2.73k | } |
_ZN5doris6Status5ErrorILin240ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRiSA_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 4 | Status status; | 404 | 4 | status._code = code; | 405 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 4 | if constexpr (sizeof...(args) == 0) { | 407 | 4 | status._err_msg->_msg = msg; | 408 | 4 | } else { | 409 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 4 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 4 | return status; | 419 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi7ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi38ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi36ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin217ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1101ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi71ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 5 | Status status; | 404 | 5 | status._code = code; | 405 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 5 | if constexpr (sizeof...(args) == 0) { | 407 | 5 | status._err_msg->_msg = msg; | 408 | 5 | } else { | 409 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 5 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 5 | return status; | 419 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RiEEES0_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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmmmRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmmmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi46ELb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 72 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 72 | Status status; | 404 | 72 | status._code = code; | 405 | 72 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 72 | if constexpr (sizeof...(args) == 0) { | 407 | 72 | status._err_msg->_msg = msg; | 408 | 72 | } else { | 409 | 72 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 72 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 72 | return status; | 419 | 72 | } |
_ZN5doris6Status5ErrorILi33ELb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 24 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 24 | Status status; | 404 | 24 | status._code = code; | 405 | 24 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 24 | if constexpr (sizeof...(args) == 0) { | 407 | 24 | status._err_msg->_msg = msg; | 408 | 24 | } else { | 409 | 24 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 24 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 24 | return status; | 419 | 24 | } |
_ZN5doris6Status5ErrorILi33ELb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 15 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 15 | Status status; | 404 | 15 | status._code = code; | 405 | 15 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 15 | if constexpr (sizeof...(args) == 0) { | 407 | 15 | status._err_msg->_msg = msg; | 408 | 15 | } else { | 409 | 15 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 15 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 15 | return status; | 419 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiRmEEES0_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: _ZN5doris6Status5ErrorILi3ELb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi30ELb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi32ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10vectorized9TypeIndexEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3120ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RKiEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin207ELb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEElRiS9_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _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: _ZN5doris6Status5ErrorILi34ELb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi34ELb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RiRmEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin3121ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi1ELb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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: _ZN5doris6Status5ErrorILi33ELb0EJRiimEEES0_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: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiRmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi4ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT1_ _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Line | Count | Source | 402 | 9 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 9 | Status status; | 404 | 9 | status._code = code; | 405 | 9 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 9 | if constexpr (sizeof...(args) == 0) { | 407 | 9 | status._err_msg->_msg = msg; | 408 | 9 | } else { | 409 | 9 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 9 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 9 | return status; | 419 | 9 | } |
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: _ZN5doris6Status5ErrorILi33ELb0EJRmNSt7__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: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcRiRmEEES0_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 | 402 | 18 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 18 | Status status; | 404 | 18 | status._code = code; | 405 | 18 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 18 | if constexpr (sizeof...(args) == 0) { | 407 | 18 | status._err_msg->_msg = msg; | 408 | 18 | } else { | 409 | 18 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 18 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 18 | return status; | 419 | 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: _ZN5doris6Status5ErrorILi4ELb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_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: _ZN5doris6Status5ErrorILi33ELb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ 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: _ZN5doris6Status5ErrorILi6ELb1EJliiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin1100ELb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi33ELb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _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_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT1_ _ZN5doris6Status5ErrorILi6ELb0EJPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS7_EDpOT1_ Line | Count | Source | 402 | 5 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 5 | Status status; | 404 | 5 | status._code = code; | 405 | 5 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 5 | if constexpr (sizeof...(args) == 0) { | 407 | 5 | status._err_msg->_msg = msg; | 408 | 5 | } else { | 409 | 5 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 5 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 5 | return status; | 419 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ _ZN5doris6Status5ErrorILi6ELb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Line | Count | Source | 402 | 4 | Status static Error(std::string_view msg, Args&&... args) { | 403 | 4 | Status status; | 404 | 4 | status._code = code; | 405 | 4 | status._err_msg = std::make_unique<ErrMsg>(); | 406 | 4 | if constexpr (sizeof...(args) == 0) { | 407 | 4 | status._err_msg->_msg = msg; | 408 | 4 | } else { | 409 | 4 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 410 | 4 | } | 411 | | #ifdef ENABLE_STACKTRACE | 412 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 413 | | // Delete the first one frame pointers, which are inside the status.h | 414 | | status._err_msg->_stack = get_stack_trace(1); | 415 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 416 | | } | 417 | | #endif | 418 | 4 | return status; | 419 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILin232ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRbS7_SA_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin241ELb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILin245ELb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT1_ Unexecuted instantiation: _ZN5doris6Status5ErrorILi6ELb1EJRKmRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT1_ |
420 | | |
421 | | template <bool stacktrace = true, typename... Args> |
422 | 82 | Status static Error(int code, std::string_view msg, Args&&... args) { |
423 | 82 | Status status; |
424 | 82 | status._code = code; |
425 | 82 | status._err_msg = std::make_unique<ErrMsg>(); |
426 | 82 | if constexpr (sizeof...(args) == 0) { |
427 | 0 | status._err_msg->_msg = msg; |
428 | 0 | } else { |
429 | 0 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); |
430 | 0 | } |
431 | | #ifdef ENABLE_STACKTRACE |
432 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { |
433 | | status._err_msg->_stack = get_stack_trace(1); |
434 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. |
435 | | } |
436 | | #endif |
437 | 82 | return status; |
438 | 82 | } _ZN5doris6Status5ErrorILb0EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 422 | 40 | Status static Error(int code, std::string_view msg, Args&&... args) { | 423 | 40 | Status status; | 424 | 40 | status._code = code; | 425 | 40 | status._err_msg = std::make_unique<ErrMsg>(); | 426 | 40 | if constexpr (sizeof...(args) == 0) { | 427 | 40 | status._err_msg->_msg = msg; | 428 | 40 | } else { | 429 | 40 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 430 | 40 | } | 431 | | #ifdef ENABLE_STACKTRACE | 432 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 433 | | status._err_msg->_stack = get_stack_trace(1); | 434 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 435 | | } | 436 | | #endif | 437 | 40 | return status; | 438 | 40 | } |
_ZN5doris6Status5ErrorILb1EJEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 422 | 42 | Status static Error(int code, std::string_view msg, Args&&... args) { | 423 | 42 | Status status; | 424 | 42 | status._code = code; | 425 | 42 | status._err_msg = std::make_unique<ErrMsg>(); | 426 | 42 | if constexpr (sizeof...(args) == 0) { | 427 | 41 | status._err_msg->_msg = msg; | 428 | 41 | } else { | 429 | 42 | status._err_msg->_msg = fmt::format(msg, std::forward<Args>(args)...); | 430 | 42 | } | 431 | | #ifdef ENABLE_STACKTRACE | 432 | | if (stacktrace && ErrorCode::error_states[abs(code)].stacktrace) { | 433 | | status._err_msg->_stack = get_stack_trace(1); | 434 | | LOG(WARNING) << "meet error status: " << status; // may print too many stacks. | 435 | | } | 436 | | #endif | 437 | 42 | return status; | 438 | 42 | } |
Unexecuted instantiation: _ZN5doris6Status5ErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_iSt17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status5ErrorILb0EJPKcEEES0_iSt17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
439 | | |
440 | 35.0M | static Status OK() { return {}; } |
441 | | |
442 | | // default have stacktrace. could disable manually. |
443 | | #define ERROR_CTOR(name, code) \ |
444 | | template <bool stacktrace = true, typename... Args> \ |
445 | 11.9k | static Status name(std::string_view msg, Args&&... args) { \ |
446 | 11.9k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
447 | 11.9k | } Unexecuted instantiation: _ZN5doris6Status19MemoryLimitExceededILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ _ZN5doris6Status10CorruptionILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 46 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 46 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 46 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR8CURLcodeEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJiRA15_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status17BufferAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA109_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TSerdeDialect4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status7IOErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 11.4k | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 11.4k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 11.4k | } |
Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_EEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status8NotFoundILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_RiRmEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 7 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 7 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 7 | } |
_ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN3orc8TypeKindEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_14TStorageMedium4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status11CgroupErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 7 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 7 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 7 | } |
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb1EJbRbNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 54 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 54 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 54 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_EEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_14TPrimitiveType4typeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8RpcErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmRKmS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRlS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io9FileBlock5StateEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_S7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmS2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_2io15FileCachePolicyEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RlS8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RlS8_SA_SA_N3Aws4Http16HttpResponseCodeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_mRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_miNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_2io10BufferTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7IOErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJEEES0_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: _ZN5doris6Status7AbortedILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v222BloomFilterAlgorithmPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: encoding_info.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_0EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_ES5_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNS_10segment_v221BitShufflePageDecoderILNS_9FieldTypeE1EEUt_EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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 | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 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$_1EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: binary_dict_page.cpp:_ZN5doris6Status13InternalErrorILb1EJRKmNS_10segment_v23$_2EEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJiEEES0_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 | 445 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRmRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9FieldTypeEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERjSA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10segment_v217ColumnIndexTypePBEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEjEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRmRjS3_S3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjRmjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb1EJNS_9FieldTypeENS_10segment_v214EncodingTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJjRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7AbortedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKlRKiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRiS2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8NotFoundILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ 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: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_22FieldAggregationMethodEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKlS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRKlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ 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_ _ZN5doris6Status13InternalErrorILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13UninitializedILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERA27_KcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status13UninitializedILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 354 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 354 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 354 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRlS2_jNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 445 | 2 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 2 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 2 | } |
Unexecuted instantiation: _ZN5doris6Status8NotFoundILb1EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmRKlEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_9TLoadType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRlPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_19TStorageBackendType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS_18BaseTabletsChannel5StateEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status17MemoryAllocFailedILb1EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR17libdeflate_resultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJR19BrotliDecoderResultEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_10segment_v217CompressionTypePBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRN8tparquet16CompressionCodec4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNS_12CompressTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_17TFileCompressType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb0EJRNS_15TFileFormatType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status11CgroupErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status11CgroupErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcRPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRPKcPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRA10_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRiPcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status7AbortedILb1EJRiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 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: _ZN5doris6Status12RuntimeErrorILb1EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_EEES0_St17basic_string_viewIcS7_EDpOT0_ _ZN5doris6Status9HttpErrorILb1EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 5 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 5 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_RiEEES0_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_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmmmRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmmmRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12NotSupportedILb0EJRKNS_9TFileType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmS3_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRjRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_S2_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb1EJRmS2_S2_RjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status10CorruptionILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_10vectorized9TypeIndexEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmRiRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRA8_KcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_RKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_iEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status7IOErrorILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_RiRmEEES0_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_ _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 445 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 1 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRjiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiS2_mEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ 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: _ZN5doris6Status12NotSupportedILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_RiS7_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: _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: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRSt17basic_string_viewIcSt11char_traitsIcEENSt7__cxx1112basic_stringIcS4_SaIcEEEEEES0_S5_DpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12RuntimeErrorILb1EJRNS_10segment_v222InvertedIndexQueryTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRfEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _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: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiRlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERlRKlS8_S8_S8_S8_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERiS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJmmRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status13InternalErrorILb1EJRKlRS0_EEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 445 | 4 | static Status name(std::string_view msg, Args&&... args) { \ | 446 | 4 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 447 | 4 | } |
Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiRmmEEES0_St17basic_string_viewIcSB_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEimmRmSG_EEES0_St17basic_string_viewIcSB_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiRKNS_7TJoinOp4typeERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPKcSD_SD_EEES0_St17basic_string_viewIcSB_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbRbS7_SA_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJNS_13PrimitiveTypeERmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKNS_13TDataSinkType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKPKcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSB_SB_EEES0_St17basic_string_viewIcS9_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRSt6atomicIiEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKiiiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13InternalErrorILb1EJRKmRjNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ |
448 | | |
449 | | // default have no stacktrace. could enable manually. |
450 | | #define ERROR_CTOR_NOSTACK(name, code) \ |
451 | | template <bool stacktrace = false, typename... Args> \ |
452 | 7.60k | static Status name(std::string_view msg, Args&&... args) { \ |
453 | 7.60k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ |
454 | 7.60k | } _ZN5doris6Status15InvalidArgumentILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 105 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 105 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 105 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNS_10segment_v214HashStrategyPBEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRjEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNS_13PredicateTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 10 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 10 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 10 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiRKPKcRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status9EndOfFileILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 5.37k | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 5.37k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 5.37k | } |
_ZN5doris6Status9CancelledILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 11 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 11 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 11 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKPKcEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 5 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 5 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 452 | 5 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 5 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 5 | } |
Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJlRNS_14CompactionTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12AlreadyExistILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status16ObtainLockFailedILb0EJlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 1.94k | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 1.94k | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 1.94k | } |
Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 452 | 12 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 12 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 12 | } |
Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_mEEES0_St17basic_string_viewIcS6_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_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJPKcRiEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERS7_EEES0_St17basic_string_viewIcS5_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJiRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 452 | 1 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 1 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 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 | 452 | 72 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 72 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 72 | } |
_ZN5doris6Status15InvalidArgumentILb0EJPKcNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 24 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 24 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 24 | } |
_ZN5doris6Status15InvalidArgumentILb0EJRA2_KcRcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Line | Count | Source | 452 | 15 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 15 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 15 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiRmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson14ParseErrorCodeEPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status16DataQualityErrorILb0EJN9rapidjson4TypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidJsonPathILb0EJRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status9EndOfFileILb0EJRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status9WaitForRfILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status12TooManyTasksILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status21WaitForScannerContextILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status9CancelledILb0EJPKcRlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS8_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRNS_13PrimitiveTypeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKNS_13TExprNodeType4typeEEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiimEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmmEEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS7_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES7_S7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Line | Count | Source | 452 | 9 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 9 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 9 | } |
Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRKPKcEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRmNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ _ZN5doris6Status15InvalidArgumentILb0EJPKcSt17basic_string_viewIcSt11char_traitsIcEEEEES0_S7_DpOT0_ Line | Count | Source | 452 | 18 | static Status name(std::string_view msg, Args&&... args) { \ | 453 | 18 | return Error<ErrorCode::code, stacktrace>(msg, std::forward<Args>(args)...); \ | 454 | 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: _ZN5doris6Status15InvalidArgumentILb0EJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKiiEEES0_St17basic_string_viewIcS5_EDpOT0_ 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_traitsIcESaIcEEES7_EEES0_St17basic_string_viewIcS5_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status15InvalidArgumentILb0EJRiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEES0_St17basic_string_viewIcS6_EDpOT0_ Unexecuted instantiation: _ZN5doris6Status8TimedOutILb0EJRlEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ Unexecuted instantiation: _ZN5doris6Status13NeedSendAgainILb0EJEEES0_St17basic_string_viewIcSt11char_traitsIcEEDpOT0_ |
455 | | |
456 | | ERROR_CTOR(PublishTimeout, PUBLISH_TIMEOUT) |
457 | | ERROR_CTOR(MemoryAllocFailed, MEM_ALLOC_FAILED) |
458 | | ERROR_CTOR(BufferAllocFailed, BUFFER_ALLOCATION_FAILED) |
459 | | ERROR_CTOR_NOSTACK(InvalidArgument, INVALID_ARGUMENT) |
460 | | ERROR_CTOR_NOSTACK(InvalidJsonPath, INVALID_JSON_PATH) |
461 | | ERROR_CTOR(MinimumReservationUnavailable, MINIMUM_RESERVATION_UNAVAILABLE) |
462 | | ERROR_CTOR(Corruption, CORRUPTION) |
463 | | ERROR_CTOR(IOError, IO_ERROR) |
464 | | ERROR_CTOR(NotFound, NOT_FOUND) |
465 | | ERROR_CTOR_NOSTACK(AlreadyExist, ALREADY_EXIST) |
466 | | ERROR_CTOR(NotSupported, NOT_IMPLEMENTED_ERROR) |
467 | | ERROR_CTOR_NOSTACK(EndOfFile, END_OF_FILE) |
468 | | ERROR_CTOR(InternalError, INTERNAL_ERROR) |
469 | | ERROR_CTOR_NOSTACK(WaitForRf, PIP_WAIT_FOR_RF) |
470 | | ERROR_CTOR_NOSTACK(WaitForScannerContext, PIP_WAIT_FOR_SC) |
471 | | ERROR_CTOR(RuntimeError, RUNTIME_ERROR) |
472 | | ERROR_CTOR_NOSTACK(Cancelled, CANCELLED) |
473 | | ERROR_CTOR(MemoryLimitExceeded, MEM_LIMIT_EXCEEDED) |
474 | | ERROR_CTOR(RpcError, THRIFT_RPC_ERROR) |
475 | | ERROR_CTOR_NOSTACK(TimedOut, TIMEOUT) |
476 | | ERROR_CTOR_NOSTACK(TooManyTasks, TOO_MANY_TASKS) |
477 | | ERROR_CTOR(Uninitialized, UNINITIALIZED) |
478 | | ERROR_CTOR(Aborted, ABORTED) |
479 | | ERROR_CTOR_NOSTACK(DataQualityError, DATA_QUALITY_ERROR) |
480 | | ERROR_CTOR_NOSTACK(NotAuthorized, NOT_AUTHORIZED) |
481 | | ERROR_CTOR(HttpError, HTTP_ERROR) |
482 | | ERROR_CTOR_NOSTACK(NeedSendAgain, NEED_SEND_AGAIN) |
483 | | ERROR_CTOR(CgroupError, CGROUP_ERROR) |
484 | | ERROR_CTOR_NOSTACK(ObtainLockFailed, OBTAIN_LOCK_FAILED) |
485 | | #undef ERROR_CTOR |
486 | | |
487 | | template <int code> |
488 | 786k | bool is() const { |
489 | 786k | return code == _code; |
490 | 786k | } Unexecuted instantiation: _ZNK5doris6Status2isILi34EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi32EEEbv _ZNK5doris6Status2isILi30EEEbv Line | Count | Source | 488 | 776k | bool is() const { | 489 | 776k | return code == _code; | 490 | 776k | } |
_ZNK5doris6Status2isILin7002EEEbv Line | Count | Source | 488 | 6.02k | bool is() const { | 489 | 6.02k | return code == _code; | 490 | 6.02k | } |
_ZNK5doris6Status2isILi6EEEbv Line | Count | Source | 488 | 3 | bool is() const { | 489 | 3 | return code == _code; | 490 | 3 | } |
_ZNK5doris6Status2isILin206EEEbv Line | Count | Source | 488 | 1 | bool is() const { | 489 | 1 | return code == _code; | 490 | 1 | } |
_ZNK5doris6Status2isILin6003EEEbv Line | Count | Source | 488 | 48 | bool is() const { | 489 | 48 | return code == _code; | 490 | 48 | } |
_ZNK5doris6Status2isILin228EEEbv Line | Count | Source | 488 | 1 | bool is() const { | 489 | 1 | return code == _code; | 490 | 1 | } |
_ZNK5doris6Status2isILi33EEEbv Line | Count | Source | 488 | 1 | bool is() const { | 489 | 1 | return code == _code; | 490 | 1 | } |
_ZNK5doris6Status2isILi39EEEbv Line | Count | Source | 488 | 1 | bool is() const { | 489 | 1 | return code == _code; | 490 | 1 | } |
_ZNK5doris6Status2isILin240EEEbv Line | Count | Source | 488 | 2.73k | bool is() const { | 489 | 2.73k | return code == _code; | 490 | 2.73k | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi3EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin3115EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin253EEEbv _ZNK5doris6Status2isILi5EEEbv Line | Count | Source | 488 | 102 | bool is() const { | 489 | 102 | return code == _code; | 490 | 102 | } |
_ZNK5doris6Status2isILin3002EEEbv Line | Count | Source | 488 | 518 | bool is() const { | 489 | 518 | return code == _code; | 490 | 518 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin406EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin506EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin911EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin908EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin2000EEEbv _ZNK5doris6Status2isILin7000EEEbv Line | Count | Source | 488 | 5 | bool is() const { | 489 | 5 | return code == _code; | 490 | 5 | } |
_ZNK5doris6Status2isILin7001EEEbv Line | Count | Source | 488 | 4 | bool is() const { | 489 | 4 | return code == _code; | 490 | 4 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILin808EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin2008EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi1EEEbv _ZNK5doris6Status2isILi31EEEbv Line | Count | Source | 488 | 15 | bool is() const { | 489 | 15 | return code == _code; | 490 | 15 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi14EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi46EEEbv _ZNK5doris6Status2isILi42EEEbv Line | Count | Source | 488 | 337 | bool is() const { | 489 | 337 | return code == _code; | 490 | 337 | } |
Unexecuted instantiation: _ZNK5doris6Status2isILi38EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILi73EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin3120EEEbv Unexecuted instantiation: _ZNK5doris6Status2isILin3121EEEbv |
491 | | |
492 | 0 | void set_code(int code) { _code = code; } |
493 | | |
494 | 35.4M | bool ok() const { return _code == ErrorCode::OK; } |
495 | | |
496 | | // Convert into TStatus. |
497 | | void to_thrift(TStatus* status) const; |
498 | | TStatus to_thrift() const; |
499 | | void to_protobuf(PStatus* status) const; |
500 | | |
501 | | std::string to_string() const; |
502 | | std::string to_string_no_stack() const; |
503 | | |
504 | | /// @return A json representation of this status. |
505 | | std::string to_json() const; |
506 | | |
507 | 357 | int code() const { return _code; } |
508 | | |
509 | | /// Clone this status and add the specified prefix to the message. |
510 | | /// |
511 | | /// If this status is OK, then an OK status will be returned. |
512 | | /// |
513 | | /// @param [in] msg |
514 | | /// The message to prepend. |
515 | | /// @return A ref to Status object |
516 | | Status& prepend(std::string_view msg); |
517 | | |
518 | | /// Add the specified suffix to the message. |
519 | | /// |
520 | | /// If this status is OK, then an OK status will be returned. |
521 | | /// |
522 | | /// @param [in] msg |
523 | | /// The message to append. |
524 | | /// @return A ref to Status object |
525 | | Status& append(std::string_view msg); |
526 | | |
527 | | // if(!status) or if (status) will use this operator |
528 | 222k | operator bool() const { return this->ok(); } |
529 | | |
530 | | // Used like if ASSERT_EQ(res, Status::OK()) |
531 | | // if the state is ok, then both code and precise code is not initialized properly, so that should check ok state |
532 | | // ignore error messages during comparison |
533 | 5.32k | bool operator==(const Status& st) const { return _code == st._code; } |
534 | | |
535 | | // Used like if ASSERT_NE(res, Status::OK()) |
536 | 11.4k | bool operator!=(const Status& st) const { return _code != st._code; } |
537 | | |
538 | | friend std::ostream& operator<<(std::ostream& ostr, const Status& status); |
539 | | |
540 | 503 | std::string msg() const { return _err_msg ? _err_msg->_msg : ""; } |
541 | | |
542 | | private: |
543 | | int _code; |
544 | | struct ErrMsg { |
545 | | std::string _msg; |
546 | | #ifdef ENABLE_STACKTRACE |
547 | | std::string _stack; |
548 | | #endif |
549 | | }; |
550 | | std::unique_ptr<ErrMsg> _err_msg; |
551 | | |
552 | 357 | std::string code_as_string() const { |
553 | 357 | return (int)_code >= 0 ? doris::to_string(static_cast<TStatusCode::type>(_code)) |
554 | 357 | : fmt::format("E{}", (int16_t)_code); |
555 | 357 | } |
556 | | }; |
557 | | |
558 | | // There are many thread using status to indicate the cancel state, one thread may update it and |
559 | | // the other thread will read it. Status is not thread safe, for example, if one thread is update it |
560 | | // and another thread is call to_string method, it may core, because the _err_msg is an unique ptr and |
561 | | // it is deconstructed during copy method. |
562 | | // And also we could not use lock, because we need get status frequently to check if it is cancelled. |
563 | | // The defaule value is ok. |
564 | | class AtomicStatus { |
565 | | public: |
566 | 5.06k | AtomicStatus() : error_st_(Status::OK()) {} |
567 | | |
568 | 82 | bool ok() const { return error_code_.load(std::memory_order_acquire) == 0; } |
569 | | |
570 | 48 | bool update(const Status& new_status) { |
571 | | // If new status is normal, or the old status is abnormal, then not need update |
572 | 48 | if (new_status.ok() || error_code_.load(std::memory_order_acquire) != 0) { |
573 | 42 | return false; |
574 | 42 | } |
575 | 6 | std::lock_guard l(mutex_); |
576 | 6 | if (error_code_.load(std::memory_order_acquire) != 0) { |
577 | 0 | return false; |
578 | 0 | } |
579 | 6 | error_st_ = new_status; |
580 | 6 | error_code_.store(new_status.code(), std::memory_order_release); |
581 | 6 | return true; |
582 | 6 | } |
583 | | |
584 | | // will copy a new status object to avoid concurrency |
585 | | // This stauts could only be called when ok==false |
586 | 65 | Status status() const { |
587 | 65 | std::lock_guard l(mutex_); |
588 | 65 | return error_st_; |
589 | 65 | } |
590 | | |
591 | | AtomicStatus(const AtomicStatus&) = delete; |
592 | | void operator=(const AtomicStatus&) = delete; |
593 | | |
594 | | private: |
595 | | std::atomic_int16_t error_code_ = 0; |
596 | | Status error_st_; |
597 | | mutable std::mutex mutex_; |
598 | | }; |
599 | | |
600 | 213 | inline std::ostream& operator<<(std::ostream& ostr, const Status& status) { |
601 | 213 | ostr << '[' << status.code_as_string() << ']'; |
602 | 213 | ostr << status.msg(); |
603 | | #ifdef ENABLE_STACKTRACE |
604 | | if (status._err_msg && !status._err_msg->_stack.empty()) { |
605 | | ostr << '\n' << status._err_msg->_stack; |
606 | | } |
607 | | #endif |
608 | 213 | return ostr; |
609 | 213 | } |
610 | | |
611 | 79 | inline std::string Status::to_string() const { |
612 | 79 | std::stringstream ss; |
613 | 79 | ss << *this; |
614 | 79 | return ss.str(); |
615 | 79 | } |
616 | | |
617 | 0 | inline std::string Status::to_string_no_stack() const { |
618 | 0 | return fmt::format("[{}]{}", code_as_string(), msg()); |
619 | 0 | } |
620 | | |
621 | | // some generally useful macros |
622 | | #define RETURN_IF_ERROR(stmt) \ |
623 | 25.5M | do { \ |
624 | 25.5M | Status _status_ = (stmt); \ Unexecuted instantiation: schema_scanner.cpp:_ZZN5doris13SchemaScanner20get_next_block_asyncEPNS_12RuntimeStateEENK3$_0clEv Unexecuted instantiation: schema_active_queries_scanner.cpp:_ZZN5doris26SchemaActiveQueriesScanner33_get_active_queries_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_catalog_meta_cache_stats_scanner.cpp:_ZZN5doris34SchemaCatalogMetaCacheStatsScanner23_get_meta_cache_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_partitions_scanner.cpp:_ZZN5doris23SchemaPartitionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_routine_scanner.cpp:_ZZN5doris21SchemaRoutinesScanner17get_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_table_options_scanner.cpp:_ZZN5doris25SchemaTableOptionsScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_table_properties_scanner.cpp:_ZZN5doris28SchemaTablePropertiesScanner22get_onedb_info_from_feElENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_group_privileges.cpp:_ZZN5doris36SchemaWorkloadGroupPrivilegesScanner39_get_workload_group_privs_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_groups_scanner.cpp:_ZZN5doris27SchemaWorkloadGroupsScanner34_get_workload_groups_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: schema_workload_sched_policy_scanner.cpp:_ZZN5doris35SchemaWorkloadSchedulePolicyScanner43_get_workload_schedule_policy_block_from_feEvENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_0clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_1clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_2clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_3clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_4clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_5clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_6clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_7clEv Line | Count | Source | 624 | 18 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_8clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK3$_9clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_10clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
olap_server.cpp:_ZZN5doris13StorageEngine16start_bg_threadsESt10shared_ptrINS_13WorkloadGroupEEENK4$_11clEv Line | Count | Source | 624 | 17 | Status _status_ = (stmt); \ |
segment.cpp:_ZZN5doris10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS0_21InvertedIndexIteratorESt14default_deleteISC_EEENK3$_0clEv Line | Count | Source | 624 | 31 | Status _status_ = (stmt); \ |
Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader4initERKNS0_21ColumnIteratorOptionsEENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_12StreamReaderEE4NodeE Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader15seek_to_ordinalEmENK3$_0clERNS_10vectorized14SubcolumnsTreeINS0_12StreamReaderEE4NodeE Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE0_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_10next_batchEPmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS6_EEPbE3$_0EENS_6StatusEOT_SA_mENKUlRNS5_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE1_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE0_clESK_ Unexecuted instantiation: hierarchical_data_reader.cpp:_ZZN5doris10segment_v222HierarchicalDataReader12process_readIZNS1_14read_by_rowidsEPKjmRN3COWINS_10vectorized7IColumnEE11mutable_ptrIS7_EEE3$_0EENS_6StatusEOT_SB_mENKUlRNS6_14SubcolumnsTreeINS0_12StreamReaderEE4NodeEE1_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 wal_manager.cpp:_ZZN5doris10WalManager18_replay_backgroundEvENK3$_0clEv Line | Count | Source | 624 | 4 | Status _status_ = (stmt); \ |
Unexecuted instantiation: wal_table.cpp:_ZZN5doris8WalTable16_get_column_infoEllRSt3mapIlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4lessIlESaISt4pairIKlS7_EEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: _ZZN5doris11FragmentMgr14_get_query_ctxINS_23TExecPlanFragmentParamsEEENS_6StatusERKT_NS_9TUniqueIdEbNS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENKUlRN5phmap13flat_hash_mapIS7_SB_NSD_4HashIS7_EENSD_7EqualToIS7_EESaISt4pairIKS7_SB_EEEEE_clESO_ Unexecuted instantiation: _ZZN5doris11FragmentMgr14_get_query_ctxINS_23TPipelineFragmentParamsEEENS_6StatusERKT_NS_9TUniqueIdEbNS_11QuerySourceERSt10shared_ptrINS_12QueryContextEEENKUlRN5phmap13flat_hash_mapIS7_SB_NSD_4HashIS7_EENSD_7EqualToIS7_EESaISt4pairIKS7_SB_EEEEE_clESO_ Unexecuted instantiation: fragment_mgr.cpp:_ZZN5doris11FragmentMgr18exec_plan_fragmentERKNS_23TPipelineFragmentParamsENS_11QuerySourceERKSt8functionIFvPNS_12RuntimeStateEPNS_6StatusEEEENK3$_0clEv Unexecuted instantiation: group_commit_mgr.cpp:_ZZN5doris16GroupCommitTable26get_first_block_load_queueEllRKNS_8UniqueIdERSt10shared_ptrINS_14LoadBlockQueueEEiS4_INS_17MemTrackerLimiterEEENK3$_0clEv 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 | 624 | 3 | Status _status_ = (stmt); \ |
Unexecuted instantiation: stream_load_executor.cpp:_ZZN5doris18StreamLoadExecutor15operate_txn_2pcEPNS_17StreamLoadContextEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: tablets_channel.cpp:_ZZN5doris18BaseTabletsChannel9add_batchERKNS_28PTabletWriterAddBlockRequestEPNS_27PTabletWriterAddBlockResultEENK3$_2clEPNS_15BaseDeltaWriterE Unexecuted instantiation: internal_service.cpp:_ZZN5doris20PInternalServiceImpl10_multi_getERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_4clEv Unexecuted instantiation: internal_service.cpp:_ZZN5doris20PInternalServiceImpl10_multi_getERKNS_16PMultiGetRequestEPNS_17PMultiGetResponseEENK3$_5clEv Unexecuted instantiation: http_stream.cpp:_ZZN5doris16HttpStreamAction11process_putEPNS_11HttpRequestESt10shared_ptrINS_17StreamLoadContextEEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader14_validate_lineERKNS_5SliceEPbENK3$_1clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader21_line_split_to_valuesERKNS_5SliceEPbENK3$_1clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader19_check_array_formatERSt6vectorINS_5SliceESaIS3_EEPbENK3$_0clB5cxx11Ev Unexecuted instantiation: csv_reader.cpp:_ZZN5doris10vectorized9CsvReader19_check_array_formatERSt6vectorINS_5SliceESaIS3_EEPbENK3$_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 Unexecuted instantiation: vjoin_node_base.cpp:_ZZN5doris10vectorized13VJoinNodeBase4openEPNS_12RuntimeStateEENK3$_0clEv Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE3EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE4EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE5EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE6EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE7EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE36EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE37EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE15EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE10EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE23EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE11EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE25EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE12EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE26EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE20EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE2EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE19EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE28EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE29EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE30EEEEEDaOT_ Unexecuted instantiation: new_olap_scan_node.cpp:_ZZN5doris10vectorized15NewOlapScanNode29_build_key_ranges_and_filtersEvENK3$_0clIRNS_16ColumnValueRangeILNS_13PrimitiveTypeE35EEEEEDaOT_ Unexecuted instantiation: vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_0clB5cxx11Ev Unexecuted instantiation: vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_1clB5cxx11Ev Unexecuted instantiation: vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_2clB5cxx11Ev Unexecuted instantiation: vfile_scanner.cpp:_ZZN5doris10vectorized12VFileScanner24_convert_to_output_blockEPNS0_5BlockEENK3$_3clB5cxx11Ev Unexecuted instantiation: vmeta_scanner.cpp:_ZZN5doris10vectorized12VMetaScanner15_fetch_metadataERKNS_14TMetaScanRangeEENK3$_0clERNS_16ClientConnectionINS_21FrontendServiceClientEEE Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS8_vELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIh9PHHashMapIhPc11DefaultHashIhvELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIt9PHHashMapItPc11DefaultHashItvELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_19MethodStringNoCacheINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberINS0_7UInt128E9PHHashMapIS7_Pc9HashCRC32IS7_ELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodOneNumberINS0_7UInt128E9PHHashMapIS7_Pc14HashMixWrapperIS7_9HashCRC32IS7_EELb0EEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberIhNS0_15DataWithNullKeyI9PHHashMapIhPc11DefaultHashIhvELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberItNS0_15DataWithNullKeyI9PHHashMapItPc11DefaultHashItvELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberIjNS0_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberImNS0_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberIjNS0_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberImNS0_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberINS0_7UInt128ENS0_15DataWithNullKeyI9PHHashMapIS8_Pc9HashCRC32IS8_ELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_15MethodOneNumberINS0_7UInt128ENS0_15DataWithNullKeyI9PHHashMapIS8_Pc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_26MethodSingleNullableColumnINS0_19MethodStringNoCacheINS0_15DataWithNullKeyINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEEEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt128EPc9HashCRC32IS8_ELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt128EPc9HashCRC32IS8_ELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt256EPc9HashCRC32IS8_ELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt256EPc9HashCRC32IS8_ELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt136EPc9HashCRC32IS8_ELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt136EPc9HashCRC32IS8_ELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt128EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt128EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt256EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt256EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt136EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb0EEEEENS_6StatusEOT_ Unexecuted instantiation: vaggregation_node.cpp:_ZZN5doris10vectorized15AggregationNode28_pre_agg_with_serialized_keyEPNS0_5BlockES3_ENK3$_0clIRNS0_15MethodKeysFixedI9PHHashMapINS0_7UInt136EPc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EELb1EEEEENS_6StatusEOT_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE11DefaultHashISD_vE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberINS0_7UInt128ENS_12HashMapTableISC_NS_11HashMapCellISC_NS0_19RowRefListWithFlagsE9HashCRC32ISC_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberINS0_7UInt256ENS_12HashMapTableISC_NS_11HashMapCellISC_NS0_19RowRefListWithFlagsE9HashCRC32ISC_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt128ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt128ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt256ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt256ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt136ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb1EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt136ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE11DefaultHashISD_vE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS0_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS0_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS0_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberINS0_7UInt128ENS_12HashMapTableISC_NS_11HashMapCellISC_NS0_19RowRefListWithFlagsE9HashCRC32ISC_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodOneNumberINS0_7UInt256ENS_12HashMapTableISC_NS_11HashMapCellISC_NS0_19RowRefListWithFlagsE9HashCRC32ISC_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS0_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESG_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt128ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt128ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt256ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt256ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt136ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES8_ Unexecuted instantiation: _ZZN5doris10vectorized17VSetOperationNodeILb0EE10sink_probeEPNS_12RuntimeStateEiPNS0_5BlockEbENKUlOT_E_clIRNS0_15MethodKeysFixedINS_12HashMapTableINS0_7UInt136ENS_11HashMapCellISD_NS0_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES8_ 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: autoinc_buffer.cpp:_ZZN5doris10vectorized15AutoIncIDBuffer24_launch_async_fetch_taskEmENK3$_0clEv 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: async_result_writer.cpp:_ZZN5doris10vectorized17AsyncResultWriter12start_writerEPNS_12RuntimeStateEPNS_14RuntimeProfileEENK3$_0clEv Unexecuted instantiation: spill_stream_manager.cpp:_ZZN5doris10vectorized18SpillStreamManager4initEvENK3$_0clEv 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: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS5_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS5_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS5_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberINS5_7UInt128ENS_12HashMapTableISD_NS_11HashMapCellISD_NS5_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberINS5_7UInt256ENS_12HashMapTableISD_NS_11HashMapCellISD_NS5_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt128ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt128ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt256ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt256ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb1EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRSt9monostateEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_16MethodSerializedINS_12HashMapTableINS_9StringRefENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE11DefaultHashISE_vE16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIhNS_12HashMapTableIhNS_11HashMapCellIhNS5_19RowRefListWithFlagsE9HashCRC32IhE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberItNS_12HashMapTableItNS_11HashMapCellItNS5_19RowRefListWithFlagsE9HashCRC32ItE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberIjNS_12HashMapTableIjNS_11HashMapCellIjNS5_19RowRefListWithFlagsE9HashCRC32IjE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberImNS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberINS5_7UInt128ENS_12HashMapTableISD_NS_11HashMapCellISD_NS5_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodOneNumberINS5_7UInt256ENS_12HashMapTableISD_NS_11HashMapCellISD_NS5_19RowRefListWithFlagsE9HashCRC32ISD_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableImNS_11HashMapCellImNS5_19RowRefListWithFlagsE9HashCRC32ImE16HashTableNoStateEESH_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt128ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt128ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt256ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt256ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb1EEEEENS_6StatusES9_ Unexecuted instantiation: _ZZN5doris8pipeline21SetProbeSinkOperatorXILb0EE4sinkEPNS_12RuntimeStateEPNS_10vectorized5BlockEbENKUlOT_E_clIRNS5_15MethodKeysFixedINS_12HashMapTableINS5_7UInt136ENS_11HashMapCellISE_NS5_19RowRefListWithFlagsE9HashCRC32ISE_E16HashTableNoStateEESI_15HashTableGrowerILm10EE9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEELb0EEEEENS_6StatusES9_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS9_vELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIh9PHHashMapIhPc11DefaultHashIhvELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIt9PHHashMapItPc11DefaultHashItvELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_19MethodStringNoCacheINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberINS2_7UInt128E9PHHashMapIS8_Pc9HashCRC32IS8_ELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodOneNumberINS2_7UInt128E9PHHashMapIS8_Pc14HashMixWrapperIS8_9HashCRC32IS8_EELb0EEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIhNS2_15DataWithNullKeyI9PHHashMapIhPc11DefaultHashIhvELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberItNS2_15DataWithNullKeyI9PHHashMapItPc11DefaultHashItvELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberIjNS2_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberImNS2_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberINS2_7UInt128ENS2_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_ELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_15MethodOneNumberINS2_7UInt128ENS2_15DataWithNullKeyI9PHHashMapIS9_Pc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_26MethodSingleNullableColumnINS2_19MethodStringNoCacheINS2_15DataWithNullKeyINS_13StringHashMapIPc9AllocatorILb1ELb1ELb0E22DefaultMemoryAllocatorEEEEEEEEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt128EPc9HashCRC32IS9_ELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt128EPc9HashCRC32IS9_ELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt256EPc9HashCRC32IS9_ELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt256EPc9HashCRC32IS9_ELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc9HashCRC32IS9_ELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc9HashCRC32IS9_ELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt128EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt128EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt256EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt256EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb0EEEEENS_6StatusERT_ Unexecuted instantiation: streaming_aggregation_operator.cpp:_ZZN5doris8pipeline22StreamingAggLocalState28_pre_agg_with_serialized_keyEPNS_10vectorized5BlockES4_ENK3$_1clINS2_15MethodKeysFixedI9PHHashMapINS2_7UInt136EPc14HashMixWrapperIS9_9HashCRC32IS9_EELb0EELb1EEEEENS_6StatusERT_ Unexecuted instantiation: task_scheduler.cpp:_ZZN5doris8pipeline20BlockedTaskScheduler5startEvENK3$_0clEv Unexecuted instantiation: task_scheduler.cpp:_ZZN5doris8pipeline13TaskScheduler5startEvENK3$_0clEv |
625 | 25.5M | if (UNLIKELY(!_status_.ok())) { \ |
626 | 200 | return _status_; \ |
627 | 200 | } \ |
628 | 25.5M | } while (false) |
629 | | |
630 | | #define PROPAGATE_FALSE(stmt) \ |
631 | 38.5k | do { \ |
632 | 38.5k | if (UNLIKELY(!static_cast<bool>(stmt))) { \ |
633 | 324 | return false; \ |
634 | 324 | } \ |
635 | 38.5k | } while (false) |
636 | | |
637 | | #define THROW_IF_ERROR(stmt) \ |
638 | 1.20M | do { \ |
639 | 1.20M | Status _status_ = (stmt); \ |
640 | 1.20M | if (UNLIKELY(!_status_.ok())) { \ |
641 | 0 | throw Exception(_status_); \ |
642 | 0 | } \ |
643 | 1.20M | } while (false) |
644 | | |
645 | | #define RETURN_ERROR_IF_NON_VEC \ |
646 | 0 | return Status::NotSupported("Non-vectorized engine is not supported since Doris 2.0."); |
647 | | |
648 | | #define RETURN_IF_STATUS_ERROR(status, stmt) \ |
649 | | do { \ |
650 | | status = (stmt); \ |
651 | | if (UNLIKELY(!status.ok())) { \ |
652 | | return; \ |
653 | | } \ |
654 | | } while (false) |
655 | | |
656 | | #define EXIT_IF_ERROR(stmt) \ |
657 | | do { \ |
658 | | Status _status_ = (stmt); \ |
659 | | if (UNLIKELY(!_status_.ok())) { \ |
660 | | LOG(ERROR) << _status_; \ |
661 | | exit(1); \ |
662 | | } \ |
663 | | } while (false) |
664 | | |
665 | | #define RETURN_FALSE_IF_ERROR(stmt) \ |
666 | 5 | do { \ |
667 | 5 | Status status = (stmt); \ |
668 | 5 | if (UNLIKELY(!status.ok())) { \ |
669 | 0 | return false; \ |
670 | 0 | } \ |
671 | 5 | } while (false) |
672 | | |
673 | | /// @brief Emit a warning if @c to_call returns a bad status. |
674 | | #define WARN_IF_ERROR(to_call, warning_prefix) \ |
675 | 5.94k | do { \ |
676 | 5.94k | Status _s = (to_call); \ |
677 | 5.94k | if (UNLIKELY(!_s.ok())) { \ |
678 | 0 | LOG(WARNING) << (warning_prefix) << ": " << _s; \ |
679 | 0 | } \ |
680 | 5.94k | } while (false); |
681 | | |
682 | | #define RETURN_NOT_OK_STATUS_WITH_WARN(stmt, warning_prefix) \ |
683 | 23.8k | do { \ |
684 | 23.8k | Status _s = (stmt); \ |
685 | 23.8k | if (UNLIKELY(!_s.ok())) { \ |
686 | 10 | LOG(WARNING) << (warning_prefix) << ", error: " << _s; \ |
687 | 10 | return _s; \ |
688 | 10 | } \ |
689 | 23.8k | } while (false); |
690 | | |
691 | | template <typename T> |
692 | | using Result = expected<T, Status>; |
693 | | |
694 | | using ResultError = unexpected<Status>; |
695 | | |
696 | | #define RETURN_IF_ERROR_RESULT(stmt) \ |
697 | 10 | do { \ |
698 | 10 | Status _status_ = (stmt); \ |
699 | 10 | if (UNLIKELY(!_status_.ok())) { \ |
700 | 0 | return unexpected(std::move(_status_)); \ |
701 | 0 | } \ |
702 | 10 | } while (false) |
703 | | |
704 | | #define DORIS_TRY(stmt) \ |
705 | 6.61k | ({ \ |
706 | 6.61k | auto&& res = (stmt); \ |
707 | 6.61k | using T = std::decay_t<decltype(res)>; \ |
708 | 6.61k | if (!res.has_value()) [[unlikely]] { \ |
709 | 1 | return std::forward<T>(res).error(); \ |
710 | 1 | } \ |
711 | 6.61k | std::forward<T>(res).value(); \ |
712 | 6.61k | }); |
713 | | |
714 | | } // namespace doris |
715 | | |
716 | | // specify formatter for Status |
717 | | template <> |
718 | | struct fmt::formatter<doris::Status> { |
719 | | template <typename ParseContext> |
720 | 7 | constexpr auto parse(ParseContext& ctx) { |
721 | 7 | return ctx.begin(); |
722 | 7 | } |
723 | | |
724 | | template <typename FormatContext> |
725 | 7 | auto format(doris::Status const& status, FormatContext& ctx) { |
726 | 7 | return fmt::format_to(ctx.out(), "{}", status.to_string()); |
727 | 7 | } |
728 | | }; |