blob: ee50a3e6239f8040c78fc1e2968a0e783c47feaa [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.hadoop.hive.metastore.model;
import java.io.Serializable;
import java.util.Set;
/**
* Represents the creation metadata of a materialization.
* It includes the database and table name for the materialization,
* the set of tables that it uses, the valid transaction list
* when it was created, and the creation/rebuild time.
*/
public class MCreationMetadata {
private long id;
private String catalogName;
private String dbName;
private String tblName;
private Set<MMVSource> tables;
private String txnList;
private long materializationTime;
public static class PK implements Serializable {
public long id;
public PK() {}
public PK(long id) {
this.id = id;
}
public String toString() {
return String.format("%d", id);
}
public int hashCode() {
return toString().hashCode();
}
public boolean equals(Object other) {
if (other != null && (other instanceof MCreationMetadata.PK)) {
MCreationMetadata.PK otherPK = (MCreationMetadata.PK) other;
return otherPK.id == id;
}
return false;
}
}
public MCreationMetadata() {
}
public MCreationMetadata(String catName, String dbName, String tblName,
Set<MMVSource> tables, String txnList, long materializationTime) {
this.catalogName = catName;
this.dbName = dbName;
this.tblName = tblName;
this.tables = tables;
this.txnList = txnList;
this.materializationTime = materializationTime;
}
public Set<MMVSource> getTables() {
return tables;
}
public void setTables(Set<MMVSource> tables) {
this.tables.clear();
this.tables.addAll(tables);
}
public String getTxnList() {
return txnList;
}
public void setTxnList(String txnList) {
this.txnList = txnList;
}
public String getCatalogName() {
return catalogName;
}
public void setCatalogName(String catName) {
this.catalogName = catName;
}
public String getDbName() {
return dbName;
}
public void setDbName(String dbName) {
this.dbName = dbName;
}
public String getTblName() {
return tblName;
}
public void setTblName(String tblName) {
this.tblName = tblName;
}
public long getMaterializationTime() {
return materializationTime;
}
public void setMaterializationTime(long materializationTime) {
this.materializationTime = materializationTime;
}
}