MCPcopy Create free account
hub / github.com/apache/paimon-rust / write_timestamp_compact

Method write_timestamp_compact

crates/paimon/src/spec/binary_row.rs:535–537  ·  view source on GitHub ↗

Write a compact Timestamp (precision <= 3) as epoch millis.

(&mut self, pos: usize, epoch_millis: i64)

Source from the content-addressed store, hash-verified

533
534 /// Write a compact Timestamp (precision <= 3) as epoch millis.
535 pub fn write_timestamp_compact(&mut self, pos: usize, epoch_millis: i64) {
536 self.write_long(pos, epoch_millis);
537 }
538
539 /// Write a non-compact Timestamp (precision > 3).
540 pub fn write_timestamp_non_compact(

Callers 3

write_datumMethod · 0.45
write_typed_valueFunction · 0.45

Calls 1

write_longMethod · 0.45

Tested by

no test coverage detected