java/core/src/java/org/apache/orc/impl/writer/FloatTreeWriter.java [38:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public FloatTreeWriter(TypeDescription schema,
                         WriterEncryptionVariant encryption,
                         WriterContext context) throws IOException {
    super(schema, encryption, context);
    this.stream = context.createStream(
        new StreamName(id, OrcProto.Stream.Kind.DATA, encryption));
    this.utils = new SerializationUtils();
    if (rowIndexPosition != null) {
      recordPosition(rowIndexPosition);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/core/src/java/org/apache/orc/impl/writer/DoubleTreeWriter.java [38:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public DoubleTreeWriter(TypeDescription schema,
                          WriterEncryptionVariant encryption,
                          WriterContext context) throws IOException {
    super(schema, encryption, context);
    this.stream = context.createStream(
        new StreamName(id, OrcProto.Stream.Kind.DATA, encryption));
    this.utils = new SerializationUtils();
    if (rowIndexPosition != null) {
      recordPosition(rowIndexPosition);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



