* Returns the timestamp at which the array was opened. * * WARNING: This is a legacy function that is needed to support the current * API and REST calls. Do not use in new code. */
| 670 | * API and REST calls. Do not use in new code. |
| 671 | */ |
| 672 | inline uint64_t timestamp_end_opened_at() const { |
| 673 | return query_type_ == QueryType::READ ? |
| 674 | array_dir_timestamp_end_ : |
| 675 | new_component_timestamp_.value_or(0); |
| 676 | } |
| 677 | |
| 678 | /** Directly set the timestamp start value. */ |
| 679 | inline void set_timestamp_start(uint64_t timestamp_start) { |
no outgoing calls
no test coverage detected