Skip to content

Commit

Permalink
Removed duplicate commits
Browse files Browse the repository at this point in the history
  • Loading branch information
allenc3 committed Jun 15, 2020
1 parent 7dd6511 commit 3671801
Showing 1 changed file with 19 additions and 1 deletion.
Expand Up @@ -23,6 +23,7 @@
import com.google.cloud.bigquery.LegacySQLTypeName;
import com.google.cloud.bigquery.Schema;
import com.google.cloud.bigquery.Table;
import com.google.cloud.bigquery.storage.test.SchemaTest.*;
import com.google.cloud.bigquery.storage.test.Test.FooType;
import com.google.protobuf.Descriptors;
import java.io.IOException;
Expand All @@ -41,7 +42,24 @@
public class SchemaCompactTest {
@Mock private BigQuery mockBigquery;
@Mock private Table mockBigqueryTable;

Descriptors.Descriptor[] type_descriptors = {
Int32Type.getDescriptor(),
Int64Type.getDescriptor(),
UInt32Type.getDescriptor(),
UInt64Type.getDescriptor(),
Fixed32Type.getDescriptor(),
Fixed64Type.getDescriptor(),
SFixed32Type.getDescriptor(),
SFixed64Type.getDescriptor(),
FloatType.getDescriptor(),
DoubleType.getDescriptor(),
BoolType.getDescriptor(),
BytesType.getDescriptor(),
StringType.getDescriptor(),
EnumType.getDescriptor(),
MessageType.getDescriptor(),
GroupType.getDescriptor()
};
@Before
public void setUp() throws IOException {
MockitoAnnotations.initMocks(this);
Expand Down

0 comments on commit 3671801

Please sign in to comment.