Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.sql.tree;
import com.google.common.collect.ImmutableList;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;
public class CreateTableAsSelect
extends Statement
{
private final QualifiedName name;
private final Query query;
private final boolean notExists;
private final List properties;
private final boolean withData;
private final Optional> columnAliases;
private final Optional comment;
public CreateTableAsSelect(QualifiedName name, Query query, boolean notExists, List properties, boolean withData, Optional> columnAliases, Optional comment)
{
this(Optional.empty(), name, query, notExists, properties, withData, columnAliases, comment);
}
public CreateTableAsSelect(NodeLocation location, QualifiedName name, Query query, boolean notExists, List properties, boolean withData, Optional> columnAliases, Optional comment)
{
this(Optional.of(location), name, query, notExists, properties, withData, columnAliases, comment);
}
private CreateTableAsSelect(Optional location, QualifiedName name, Query query, boolean notExists, List properties, boolean withData, Optional> columnAliases, Optional comment)
{
super(location);
this.name = requireNonNull(name, "name is null");
this.query = requireNonNull(query, "query is null");
this.notExists = notExists;
this.properties = ImmutableList.copyOf(requireNonNull(properties, "properties is null"));
this.withData = withData;
this.columnAliases = columnAliases;
this.comment = requireNonNull(comment, "comment is null");
}
public QualifiedName getName()
{
return name;
}
public Query getQuery()
{
return query;
}
public boolean isNotExists()
{
return notExists;
}
public List getProperties()
{
return properties;
}
public boolean isWithData()
{
return withData;
}
public Optional> getColumnAliases()
{
return columnAliases;
}
public Optional getComment()
{
return comment;
}
@Override
public R accept(AstVisitor visitor, C context)
{
return visitor.visitCreateTableAsSelect(this, context);
}
@Override
public List getChildren()
{
return ImmutableList.builder()
.add(query)
.addAll(properties)
.build();
}
@Override
public int hashCode()
{
return Objects.hash(name, query, properties, withData, columnAliases, comment);
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if ((obj == null) || (getClass() != obj.getClass())) {
return false;
}
CreateTableAsSelect o = (CreateTableAsSelect) obj;
return Objects.equals(name, o.name)
&& Objects.equals(query, o.query)
&& Objects.equals(notExists, o.notExists)
&& Objects.equals(properties, o.properties)
&& Objects.equals(withData, o.withData)
&& Objects.equals(columnAliases, o.columnAliases)
&& Objects.equals(comment, o.comment);
}
@Override
public String toString()
{
return toStringHelper(this)
.add("name", name)
.add("query", query)
.add("notExists", notExists)
.add("properties", properties)
.add("withData", withData)
.add("columnAliases", columnAliases)
.add("comment", comment)
.toString();
}
}