bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/parser/visitors/IdentifyDroppedPersistentTableVisitor.java [70:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   @Override
   public void visit(ASTDropStatement dropStatement) {
        ArrayList<String> fqdm = new ArrayList<>();
        dropStatement.getName()
        .getNames()
        .forEach(
            identifier -> {
                // Get the identifier as a string in lower case.
                String id = identifier.getIdString().toLowerCase();
                fqdm.add(id);
            }
        );
        droppedTables.add(String.join(".", fqdm));
   }

   // Getter method to retrieve the list of suggestion messages.
   public String getResult() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bigquery-antipattern-recognition/src/main/java/com/google/zetasql/toolkit/antipattern/parser/visitors/IdentifyMissingDropStatementVisitor.java [71:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   @Override
   public void visit(ASTDropStatement dropStatement) {
        ArrayList<String> fqdm = new ArrayList<>();
        dropStatement.getName()
        .getNames()
        .forEach(
            identifier -> {
                // Get the identifier as a string in lower case.
                String id = identifier.getIdString().toLowerCase();
                fqdm.add(id);
            }
        );
        droppedTables.add(String.join(".", fqdm));
   }

   // Getter method to retrieve the list of suggestion messages.
   public String getResult() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



