| 34 | } |
| 35 | |
| 36 | std::unique_ptr<substrait::Version> CreateVersion() { |
| 37 | auto version = std::make_unique<substrait::Version>(); |
| 38 | version->set_major_number(kSubstraitMajorVersion); |
| 39 | version->set_minor_number(kSubstraitMinorVersion); |
| 40 | version->set_patch_number(kSubstraitPatchVersion); |
| 41 | version->set_producer("Acero " + GetBuildInfo().version_string); |
| 42 | return version; |
| 43 | } |
| 44 | |
| 45 | } // namespace engine |
| 46 |
no outgoing calls
no test coverage detected