| 465 | } |
| 466 | |
| 467 | inline ::flatbuffers::Offset<TimestampMetadata> CreateTimestampMetadataDirect( |
| 468 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 469 | arrow::ipc::feather::fbs::TimeUnit unit = arrow::ipc::feather::fbs::TimeUnit_SECOND, |
| 470 | const char *timezone = nullptr) { |
| 471 | auto timezone__ = timezone ? _fbb.CreateString(timezone) : 0; |
| 472 | return arrow::ipc::feather::fbs::CreateTimestampMetadata( |
| 473 | _fbb, |
| 474 | unit, |
| 475 | timezone__); |
| 476 | } |
| 477 | |
| 478 | struct DateMetadata FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 479 | typedef DateMetadataBuilder Builder; |
nothing calls this directly
no test coverage detected