A BinaryMap that uses org.apache.fluss.row.aligned.AlignedRow as the binary format for nested row types.
| 28 | * format for nested row types. |
| 29 | */ |
| 30 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected