Skip to content

Commit

Permalink
[CALCITE-5549] Appropriately set DATA_TYPE and IS_GENERATEDCOLUMN met…
Browse files Browse the repository at this point in the history
…adata values for MEASURE types
  • Loading branch information
tjbanghart authored and wnob committed Feb 15, 2024
1 parent a1d87a9 commit 00552ee
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions core/src/main/java/org/apache/calcite/avatica/MetaImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -360,25 +360,6 @@ public static class MetaColumn implements Named {
// TODO: https://issues.apache.org/jira/browse/CALCITE-5549
// mark as deprecated once Calcite uses updated constructor.
@SuppressWarnings("unused")
public MetaColumn(
String tableCat,
String tableSchem,
String tableName,
String columnName,
int dataType,
String typeName,
Integer columnSize,
Integer decimalDigits,
Integer numPrecRadix,
int nullable,
Integer charOctetLength,
int ordinalPosition,
String isNullable) {
this(tableCat, tableSchem, tableName, columnName, dataType, typeName, columnSize,
decimalDigits, numPrecRadix, nullable, charOctetLength, ordinalPosition, isNullable, "",
"");
}

public MetaColumn(
String tableCat,
String tableSchem,
Expand Down

0 comments on commit 00552ee

Please sign in to comment.