MCPcopy Create free account
hub / github.com/apache/arrow / Timestamp

Method Timestamp

cpp/src/parquet/types.cc:634–640  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

632}
633
634std::shared_ptr<const LogicalType> LogicalType::Timestamp(
635 bool is_adjusted_to_utc, LogicalType::TimeUnit::unit time_unit,
636 bool is_from_converted_type, bool force_set_converted_type) {
637 DCHECK(time_unit != LogicalType::TimeUnit::UNKNOWN);
638 return TimestampLogicalType::Make(is_adjusted_to_utc, time_unit, is_from_converted_type,
639 force_set_converted_type);
640}
641
642std::shared_ptr<const LogicalType> LogicalType::Interval() {
643 return IntervalLogicalType::Make();

Calls 1

MakeFunction · 0.70