We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5f000f commit 8e40d44Copy full SHA for 8e40d44
2 files changed
.github/trigger_files/beam_PostCommit_SQL.json
@@ -1,4 +1,4 @@
1
{
2
"comment": "Modify this file in a trivial way to cause this test suite to run ",
3
- "modification": 0
+ "modification": 1
4
}
sdks/java/core/src/main/java/org/apache/beam/sdk/schemas/Schema.java
@@ -974,7 +974,8 @@ public boolean typesEqual(FieldType other) {
974
getLogicalType().getIdentifier(), other.getLogicalType().getIdentifier())) {
975
return false;
976
977
- if (!getLogicalType().getArgumentType().equals(other.getLogicalType().getArgumentType())) {
+ if (!Objects.equals(
978
+ getLogicalType().getArgumentType(), other.getLogicalType().getArgumentType())) {
979
980
981
if (!Row.Equals.deepEquals(
0 commit comments