001package gudusoft.gsqlparser.nodes;
002
003/**
004 * AST node for StarRocks DROP REPOSITORY statement.
005 *
006 * Syntax:
007 * DROP REPOSITORY `repo_name`;
008 *
009 * Example:
010 * DROP REPOSITORY `oss_repo`;
011 * DROP REPOSITORY hdfs_repo;
012 */
013public class TDropRepositorySqlNode extends TParseTreeNode {
014    // Repository name
015    private TObjectName repositoryName;
016
017    // Getters and setters
018    public TObjectName getRepositoryName() {
019        return repositoryName;
020    }
021
022    public void setRepositoryName(TObjectName repositoryName) {
023        this.repositoryName = repositoryName;
024    }
025
026    public void init(Object arg1) {
027        this.repositoryName = (TObjectName) arg1;
028    }
029}