Uses of Class
io.prestosql.sql.tree.QualifiedName
-
Packages that use QualifiedName Package Description io.prestosql.sql io.prestosql.sql.tree -
-
Uses of QualifiedName in io.prestosql.sql
Methods in io.prestosql.sql with parameters of type QualifiedName Modifier and Type Method Description static TableQueryUtil. table(QualifiedName name)Constructor parameters in io.prestosql.sql with type arguments of type QualifiedName Constructor Description TreePrinter(java.util.IdentityHashMap<Expression,QualifiedName> resolvedNameReferences, java.io.PrintStream out) -
Uses of QualifiedName in io.prestosql.sql.tree
Methods in io.prestosql.sql.tree that return QualifiedName Modifier and Type Method Description QualifiedNameAddColumn. getName()QualifiedNameCall. getName()QualifiedNameComment. getName()QualifiedNameCreateTable. getName()QualifiedNameCreateTableAsSelect. getName()QualifiedNameCreateView. getName()QualifiedNameDropView. getName()QualifiedNameFunctionCall. getName()QualifiedNameResetSession. getName()QualifiedNameSetSession. getName()QualifiedNameShowCreate. getName()QualifiedNameTable. getName()static QualifiedNameDereferenceExpression. getQualifiedName(DereferenceExpression expression)If this DereferenceExpression looks like a QualifiedName, return QualifiedName.QualifiedNameCreateSchema. getSchemaName()QualifiedNameDropSchema. getSchemaName()QualifiedNameRenameSchema. getSource()QualifiedNameRenameTable. getSource()QualifiedNameRenameView. getSource()QualifiedNameSetSchemaAuthorization. getSource()QualifiedNameDropColumn. getTable()QualifiedNameRenameColumn. getTable()QualifiedNameShowColumns. getTable()QualifiedNameAnalyze. getTableName()QualifiedNameDropTable. getTableName()QualifiedNameGrant. getTableName()QualifiedNameLikeClause. getTableName()QualifiedNameRevoke. getTableName()QualifiedNameInsert. getTarget()QualifiedNameRenameTable. getTarget()QualifiedNameRenameView. getTarget()static QualifiedNameQualifiedName. of(java.lang.Iterable<Identifier> originalParts)static QualifiedNameQualifiedName. of(java.lang.String name)static QualifiedNameQualifiedName. of(java.lang.String first, java.lang.String... rest)Methods in io.prestosql.sql.tree that return types with arguments of type QualifiedName Modifier and Type Method Description java.util.Optional<QualifiedName>QualifiedName. getPrefix()For an identifier of the form "a.b.c.d", returns "a.b.c" For an identifier of the form "a", returns absentjava.util.Optional<QualifiedName>ShowTables. getSchema()java.util.Optional<QualifiedName>ShowGrants. getTableName()Methods in io.prestosql.sql.tree with parameters of type QualifiedName Modifier and Type Method Description static ExpressionDereferenceExpression. from(QualifiedName name)booleanQualifiedName. hasSuffix(QualifiedName suffix)Constructors in io.prestosql.sql.tree with parameters of type QualifiedName Constructor Description AddColumn(NodeLocation location, QualifiedName name, ColumnDefinition column)AddColumn(QualifiedName name, ColumnDefinition column)Analyze(NodeLocation location, QualifiedName tableName, java.util.List<Property> properties)Analyze(QualifiedName tableName, java.util.List<Property> properties)Call(NodeLocation location, QualifiedName name, java.util.List<CallArgument> arguments)Call(QualifiedName name, java.util.List<CallArgument> arguments)Call(java.util.Optional<NodeLocation> location, QualifiedName name, java.util.List<CallArgument> arguments)Comment(Comment.Type type, QualifiedName name, java.util.Optional<java.lang.String> comment)Comment(NodeLocation location, Comment.Type type, QualifiedName name, java.util.Optional<java.lang.String> comment)CreateSchema(NodeLocation location, QualifiedName schemaName, boolean notExists, java.util.List<Property> properties, java.util.Optional<PrincipalSpecification> principal)CreateSchema(QualifiedName schemaName, boolean notExists, java.util.List<Property> properties)CreateSchema(QualifiedName schemaName, boolean notExists, java.util.List<Property> properties, java.util.Optional<PrincipalSpecification> principal)CreateTable(NodeLocation location, QualifiedName name, java.util.List<TableElement> elements, boolean notExists, java.util.List<Property> properties, java.util.Optional<java.lang.String> comment)CreateTable(QualifiedName name, java.util.List<TableElement> elements, boolean notExists, java.util.List<Property> properties, java.util.Optional<java.lang.String> comment)CreateTableAsSelect(NodeLocation location, QualifiedName name, Query query, boolean notExists, java.util.List<Property> properties, boolean withData, java.util.Optional<java.util.List<Identifier>> columnAliases, java.util.Optional<java.lang.String> comment)CreateTableAsSelect(QualifiedName name, Query query, boolean notExists, java.util.List<Property> properties, boolean withData, java.util.Optional<java.util.List<Identifier>> columnAliases, java.util.Optional<java.lang.String> comment)CreateView(NodeLocation location, QualifiedName name, Query query, boolean replace, java.util.Optional<java.lang.String> comment, java.util.Optional<CreateView.Security> security)CreateView(QualifiedName name, Query query, boolean replace, java.util.Optional<java.lang.String> comment, java.util.Optional<CreateView.Security> security)DropColumn(NodeLocation location, QualifiedName table, Identifier column)DropColumn(QualifiedName table, Identifier column)DropSchema(NodeLocation location, QualifiedName schemaName, boolean exists, boolean cascade)DropSchema(QualifiedName schemaName, boolean exists, boolean cascade)DropTable(NodeLocation location, QualifiedName tableName, boolean exists)DropTable(QualifiedName tableName, boolean exists)DropView(NodeLocation location, QualifiedName name, boolean exists)DropView(QualifiedName name, boolean exists)FunctionCall(NodeLocation location, QualifiedName name, java.util.List<Expression> arguments)FunctionCall(QualifiedName name, java.util.List<Expression> arguments)FunctionCall(java.util.Optional<NodeLocation> location, QualifiedName name, java.util.Optional<Window> window, java.util.Optional<Expression> filter, java.util.Optional<OrderBy> orderBy, boolean distinct, java.util.Optional<FunctionCall.NullTreatment> nullTreatment, java.util.List<Expression> arguments)Grant(NodeLocation location, java.util.Optional<java.util.List<java.lang.String>> privileges, boolean table, QualifiedName tableName, PrincipalSpecification grantee, boolean grantOption)Grant(java.util.Optional<java.util.List<java.lang.String>> privileges, boolean table, QualifiedName tableName, PrincipalSpecification grantee, boolean grantOption)Insert(QualifiedName target, java.util.Optional<java.util.List<Identifier>> columns, Query query)LikeClause(NodeLocation location, QualifiedName tableName, java.util.Optional<LikeClause.PropertiesOption> propertiesOption)LikeClause(QualifiedName tableName, java.util.Optional<LikeClause.PropertiesOption> propertiesOption)RenameColumn(NodeLocation location, QualifiedName table, Identifier source, Identifier target)RenameColumn(QualifiedName table, Identifier source, Identifier target)RenameSchema(NodeLocation location, QualifiedName source, Identifier target)RenameSchema(QualifiedName source, Identifier target)RenameTable(NodeLocation location, QualifiedName source, QualifiedName target)RenameTable(QualifiedName source, QualifiedName target)RenameView(NodeLocation location, QualifiedName source, QualifiedName target)RenameView(QualifiedName source, QualifiedName target)ResetSession(NodeLocation location, QualifiedName name)ResetSession(QualifiedName name)Revoke(boolean grantOptionFor, java.util.Optional<java.util.List<java.lang.String>> privileges, boolean table, QualifiedName tableName, PrincipalSpecification grantee)Revoke(NodeLocation location, boolean grantOptionFor, java.util.Optional<java.util.List<java.lang.String>> privileges, boolean table, QualifiedName tableName, PrincipalSpecification grantee)SetSchemaAuthorization(NodeLocation location, QualifiedName source, PrincipalSpecification principal)SetSchemaAuthorization(QualifiedName source, PrincipalSpecification principal)SetSession(NodeLocation location, QualifiedName name, Expression value)SetSession(QualifiedName name, Expression value)ShowColumns(NodeLocation location, QualifiedName table, java.util.Optional<java.lang.String> likePattern, java.util.Optional<java.lang.String> escape)ShowColumns(QualifiedName table, java.util.Optional<java.lang.String> likePattern, java.util.Optional<java.lang.String> escape)ShowCreate(NodeLocation location, ShowCreate.Type type, QualifiedName name)ShowCreate(ShowCreate.Type type, QualifiedName name)Table(NodeLocation location, QualifiedName name)Table(QualifiedName name)Constructor parameters in io.prestosql.sql.tree with type arguments of type QualifiedName Constructor Description GroupingOperation(java.util.Optional<NodeLocation> location, java.util.List<QualifiedName> groupingColumns)ShowGrants(boolean table, java.util.Optional<QualifiedName> tableName)ShowGrants(NodeLocation location, boolean table, java.util.Optional<QualifiedName> tableName)ShowTables(NodeLocation location, java.util.Optional<QualifiedName> schema, java.util.Optional<java.lang.String> likePattern, java.util.Optional<java.lang.String> escape)ShowTables(java.util.Optional<QualifiedName> schema, java.util.Optional<java.lang.String> likePattern, java.util.Optional<java.lang.String> escape)
-