All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.ingest.streaming.internal.ParquetColumn Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2024 Snowflake Computing Inc. All rights reserved.
 */

package net.snowflake.ingest.streaming.internal;

import org.apache.parquet.schema.Type;

/** Represents a column in a Parquet file. */
class ParquetColumn {
  final ColumnMetadata columnMetadata;
  final int index;
  final Type type;

  ParquetColumn(ColumnMetadata columnMetadata, int index, Type type) {
    this.columnMetadata = columnMetadata;
    this.index = index;
    this.type = type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy