Xiaoven / codegex

A light-weight tools like spotbugs
GNU Lesser General Public License v2.1
1 stars 0 forks source link

FPs for (NM_FUTURE_KEYWORD_USED_AS_IDENTIFIER). #139

Closed Xiaoven closed 3 years ago

Xiaoven commented 3 years ago
// https://github.com/apache/ignite/pull/8683
// java/org/apache/ignite/internal/processors/query/calcite/rel/IgniteMapAggregateSort.java

assert !collation.isDefault();
@@ -228,41 +226,29 @@ public void removeResourceListener(final ResourceType resourceType,
  public void deliverEventFromRemote(final ResourceEvent event) {
    assert !event.isLocal();
Xiaoven commented 3 years ago
throw new Exception("Datatype should either be: plain, user-defined, subrange, array, tuple, enum, or record type.")
assertSingleValue("test.enum.country.\"भारत\" between test.enum.country.FRANCE and test.enum.country.BAHAMAS", true);
Xiaoven commented 3 years ago

public static int TAG_ENUM = INSTANCE.ippTagValue("enum");

好奇会不会误判 tag_emum tag_enum_hh

throw new UnsupportedOperationException("The enum-maps CONSUMERS and DESERIALIZERS "
          + "are not equal. This is a bug in the implementation of RocksSerDe.");
Xiaoven commented 3 years ago

好奇会不会误判 tag_emum tag_enum_hh

不会,\w 包括了 _, 前后都用 \b是不会匹配的

Xiaoven commented 3 years ago

Closed by #142