blob: b0d22d310a1528fc38f0d635850e0317380c0b29 [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.phoenix.execute;
import java.sql.SQLException;
import org.apache.phoenix.jdbc.PhoenixConnection;
public class CommitException extends SQLException {
private static final long serialVersionUID = 2L;
private final int[] uncommittedStatementIndexes;
private final long serverTimestamp;
public CommitException(Exception e, int[] uncommittedStatementIndexes, long serverTimestamp) {
super(e);
this.uncommittedStatementIndexes = uncommittedStatementIndexes;
this.serverTimestamp = serverTimestamp;
}
public long getServerTimestamp() {
return this.serverTimestamp;
}
/**
* Returns indexes of UPSERT and DELETE statements that have failed. Indexes returned
* correspond to each failed statement's order of creation within a {@link PhoenixConnection} up to
* commit/rollback.
* <p>
* Statements whose index is returned in this set correspond to one or more HBase mutations that have failed.
* <p>
* Statement indexes are maintained correctly for connections that mutate and query
* <b>data</b> (DELETE, UPSERT and SELECT) only. Statement (and their subsequent failure) order
* is undefined for connections that execute metadata operations due to the fact that Phoenix rolls
* back connections after metadata mutations.
*
* @see PhoenixConnection#getStatementExecutionCounter()
*/
public int[] getUncommittedStatementIndexes() {
return uncommittedStatementIndexes;
}
}