-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Branch 2.1] backport systable PRs. #40642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Branch 2.1] backport systable PRs. #40642
Conversation
Co-authored-by: Mingyu Chen <morningman.cmy@gmail.com>
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
|
|
||
| #ifndef _SCHEMA_SCANNER_HELPER_H_ | ||
|
|
||
| #include <stdint.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: inclusion of deprecated C++ header 'stdint.h'; consider using 'cstdint' instead [modernize-deprecated-headers]
| #include <stdint.h> | |
| #include <cstdint> |
| {"PROPERTIES", TYPE_STRING, sizeof(StringRef), true}, | ||
| }; | ||
|
|
||
| SchemaTableOptionsScanner::SchemaTableOptionsScanner() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: use '= default' to define a trivial default constructor [modernize-use-equals-default]
be/src/exec/schema_scanner/schema_table_options_scanner.cpp:40:
- : SchemaScanner(_s_tbls_columns, TSchemaTableType::SCH_TABLE_OPTIONS) {}
+ : SchemaScanner(_s_tbls_columns, TSchemaTableType::SCH_TABLE_OPTIONS) = default;
Proposed changes
backport
#40568
#40455
#40456
#40153
#34384