bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/parser/visitors/IdentifyDroppedPersistentTableVisitor.java [56:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ArrayList<String> fqdm = new ArrayList<>();
            createTableStatement.getName()
            .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 [57:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ArrayList<String> fqdm = new ArrayList<>();
            createTableStatement.getName()
            .getNames()
            .forEach(
                identifier -> {
                    // Get the identifier as a string in lower case.
                    String id = identifier.getIdString().toLowerCase();
                    fqdm.add(id);
                }
            );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



