| 914 | } |
| 915 | |
| 916 | Status IllegallyChangedTo(Kind::type illegally_changed_to) { |
| 917 | return ParseError("Column(", Path(), ") changed from ", Kind::Name(builder_.kind), |
| 918 | " to ", Kind::Name(illegally_changed_to), " in row ", num_rows_); |
| 919 | } |
| 920 | |
| 921 | /// Reserve storage for scalars, these can occupy almost all of the JSON buffer |
| 922 | Status ReserveScalarStorage(int64_t size) override { |
nothing calls this directly
no test coverage detected