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

Function test_get_long

crates/paimon/src/spec/binary_row.rs:1203–1208  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1201
1202 #[test]
1203 fn test_get_long() {
1204 let mut builder = BinaryRowBuilder::new(1);
1205 builder.write_long(0, i64::MAX);
1206 let row = builder.build();
1207 assert_eq!(row.get_long(0).unwrap(), i64::MAX);
1208 }
1209
1210 #[test]
1211 fn test_get_short_byte_boolean() {

Callers

nothing calls this directly

Calls 2

write_longMethod · 0.45
buildMethod · 0.45

Tested by

no test coverage detected