MCPcopy Create free account
hub / github.com/apache/fluss / AlignedMap

Class AlignedMap

fluss-common/src/main/java/org/apache/fluss/row/map/AlignedMap.java:30–47  ·  view source on GitHub ↗

A BinaryMap that uses org.apache.fluss.row.aligned.AlignedRow as the binary format for nested row types.

Source from the content-addressed store, hash-verified

28 * format for nested row types.
29 */
30public class AlignedMap extends BinaryMap {
31 private static final long serialVersionUID = 1L;
32
33 @Override
34 protected BinaryArray createKeyArrayInstance() {
35 return new AlignedArray();
36 }
37
38 @Override
39 protected BinaryArray createValueArrayInstance() {
40 return new AlignedArray();
41 }
42
43 @Override
44 protected BinaryMap createMapInstance() {
45 return new AlignedMap();
46 }
47}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected