Indicates if the schema version where this field was introduced is less than or equal to the specified target schema version. If returning is true, this field should be included in the workload management table DMLs. If returning false, this field is too new and must be ignored.
| 96 | // should be included in the workload management table DMLs. If returning false, this |
| 97 | // field is too new and must be ignored. |
| 98 | bool Include(const kudu::Version& target_schema_version) const { |
| 99 | return schema_version <= target_schema_version; |
| 100 | } |
| 101 | }; // class FieldDefinition |
| 102 | |
| 103 | /// List of query table columns. Must be kept in-sync with SystemTables.thrift |
no outgoing calls
no test coverage detected