| 1794 | } |
| 1795 | |
| 1796 | inline ::flatbuffers::Offset<Timestamp> CreateTimestampDirect( |
| 1797 | ::flatbuffers::FlatBufferBuilder &_fbb, |
| 1798 | org::apache::arrow::flatbuf::TimeUnit unit = org::apache::arrow::flatbuf::TimeUnit_SECOND, |
| 1799 | const char *timezone = nullptr) { |
| 1800 | auto timezone__ = timezone ? _fbb.CreateString(timezone) : 0; |
| 1801 | return org::apache::arrow::flatbuf::CreateTimestamp( |
| 1802 | _fbb, |
| 1803 | unit, |
| 1804 | timezone__); |
| 1805 | } |
| 1806 | |
| 1807 | struct Interval FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table { |
| 1808 | typedef IntervalBuilder Builder; |
nothing calls this directly
no test coverage detected