| 1617 | }; |
| 1618 | |
| 1619 | inline ::flatbuffers::Offset<Time> CreateTime( |
| 1620 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1621 | org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit_MILLISECOND, |
| 1622 | int32_t bitWidth = 32) { |
| 1623 | TimeBuilder builder_(_fbb); |
| 1624 | builder_.add_bitWidth(bitWidth); |
| 1625 | builder_.add_unit(unit); |
| 1626 | return builder_.Finish(); |
| 1627 | } |
| 1628 | |
| 1629 | /// Timestamp is a 64-bit signed integer representing an elapsed time since a |
| 1630 | /// fixed epoch, stored in either of four units: seconds, milliseconds, |
no test coverage detected