Class TableInfo
java.lang.Object
io.deephaven.parquet.table.metadata.TableInfo
Representation class for per-table information stored in key-value metadata for Deephaven-written Parquet files.
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TableInfo.Builder
builder()
final Map<String,
ColumnTypeInfo> abstract List<ColumnTypeInfo>
abstract List<DataIndexInfo>
static TableInfo
deserializeFromJSON
(@NotNull String tableInfoRaw) final Map<String,
GroupingColumnInfo> abstract List<GroupingColumnInfo>
final String
abstract List<SortColumnInfo>
version()
-
Constructor Details
-
TableInfo
public TableInfo()
-
-
Method Details
-
serializeToJSON
- Throws:
IOException
-
deserializeFromJSON
public static TableInfo deserializeFromJSON(@NotNull @NotNull String tableInfoRaw) throws IOException - Throws:
IOException
-
groupingColumnMap
-
columnTypeMap
-
version
- Returns:
- The Deephaven release version used to write the parquet file
-
groupingColumns
- Returns:
- List of
grouping columns
for columns with grouped data
-
dataIndexes
- Returns:
- List of
data indexes
for this table
-
columnTypes
- Returns:
- List of
column types
for columns requiring non-default deserialization or type selection
-
sortingColumns
- Returns:
- List of
sort columns
representing the sort order of the table. Note that these are ordered by precedence, representing a multi-column sort.
-
builder
-