bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/parser/visitors/IdentifyDroppedPersistentTableVisitor.java [74:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        .getNames()
        .forEach(
            identifier -> {
                // Get the identifier as a string in lower case.
                String id = identifier.getIdString().toLowerCase();
                fqdm.add(id);
            }
        );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/parser/visitors/IdentifyMissingDropStatementVisitor.java [59:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .getNames()
            .forEach(
                identifier -> {
                    // Get the identifier as a string in lower case.
                    String id = identifier.getIdString().toLowerCase();
                    fqdm.add(id);
                }
            );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



