Skip to content

Commit

Permalink
Add typeName to testGetTablesResultFilteredWithSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
escobargabriel committed Apr 8, 2022
1 parent 57d6fb4 commit 1c5ed6e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("ID", new FieldType(false, MinorType.INT.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("INTEGER")
.schemaName("APP")
.tableName("FOREIGNTABLE")
.precision(10)
Expand All @@ -263,6 +264,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("FOREIGNNAME", new FieldType(true, MinorType.VARCHAR.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("VARCHAR")
.schemaName("APP")
.tableName("FOREIGNTABLE")
.precision(100)
Expand All @@ -272,6 +274,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("VALUE", new FieldType(true, MinorType.INT.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("INTEGER")
.schemaName("APP")
.tableName("FOREIGNTABLE")
.precision(10)
Expand All @@ -287,6 +290,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("ID", new FieldType(false, MinorType.INT.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("INTEGER")
.schemaName("APP")
.tableName("INTTABLE")
.precision(10)
Expand All @@ -296,6 +300,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("KEYNAME", new FieldType(true, MinorType.VARCHAR.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("VARCHAR")
.schemaName("APP")
.tableName("INTTABLE")
.precision(100)
Expand All @@ -305,6 +310,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("VALUE", new FieldType(true, MinorType.INT.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("INTEGER")
.schemaName("APP")
.tableName("INTTABLE")
.precision(10)
Expand All @@ -314,6 +320,7 @@ public void testGetTablesResultFilteredWithSchema() throws Exception {
new Field("FOREIGNID", new FieldType(true, MinorType.INT.getType(), null,
new FlightSqlColumnMetadata.Builder()
.catalogName("")
.typeName("INTEGER")
.schemaName("APP")
.tableName("INTTABLE")
.precision(10)
Expand Down

0 comments on commit 1c5ed6e

Please sign in to comment.