eldenmoon commented on code in PR #30906: URL: https://github.com/apache/doris/pull/30906#discussion_r1480795759
########## be/src/olap/tablet_schema.h: ########## @@ -363,17 +366,17 @@ class TabletSchema { // Dump [(name, type, is_nullable), ...] string dump_structure() const { string str = "["; - for (auto p : _field_name_to_index) { + for (auto p : _cols) { Review Comment: `_field_name_to_index` is an unorded_map. change it to make output ordered -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org