| 145 | } |
| 146 | |
| 147 | static std::shared_ptr<Field> DictStr(std::string name) { |
| 148 | return field(std::move(name), dictionary(int32(), utf8())); |
| 149 | } |
| 150 | |
| 151 | static std::shared_ptr<Field> DictInt(std::string name) { |
| 152 | return field(std::move(name), dictionary(int32(), int32())); |
nothing calls this directly
no test coverage detected