forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e72183f
commit 447f427
Showing
2 changed files
with
90 additions
and
65 deletions.
There are no files selected for viewing
65 changes: 0 additions & 65 deletions
65
...flight/flight-sql/src/test/java/org/apache/arrow/flight/sql/PreparedStatementContext.java
This file was deleted.
Oops, something went wrong.
90 changes: 90 additions & 0 deletions
90
java/flight/flight-sql/src/test/java/org/apache/arrow/flight/sql/StatementContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* | ||
* 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.arrow.flight.sql; | ||
|
||
import java.io.Serializable; | ||
import java.sql.Statement; | ||
import java.util.Objects; | ||
import java.util.Optional; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
import org.apache.arrow.util.AutoCloseables; | ||
import org.apache.arrow.util.Preconditions; | ||
|
||
/** | ||
* Context for {@link T} to be persisted in memory in between {@link FlightSqlProducer} calls. | ||
* | ||
* @param <T> the {@link Statement} to be persisted. | ||
*/ | ||
public final class StatementContext<T extends Statement> implements AutoCloseable, Serializable { | ||
|
||
private static final long serialVersionUID = 1344967087502630673L; | ||
|
||
private final T statement; | ||
private final String query; | ||
|
||
public StatementContext(final T statement, final @Nullable String query) { | ||
this.statement = Preconditions.checkNotNull(statement); | ||
this.query = query; | ||
} | ||
|
||
public StatementContext(final T statement) { | ||
this(statement, null); | ||
} | ||
|
||
/** | ||
* Gets the statement wrapped by this {@link StatementContext}. | ||
* | ||
* @return the inner statement. | ||
*/ | ||
public T getStatement() { | ||
return statement; | ||
} | ||
|
||
/** | ||
* Gets the optional SQL query wrapped by this {@link StatementContext}. | ||
* | ||
* @return the SQL query if present; empty otherwise. | ||
*/ | ||
public Optional<String> getQuery() { | ||
return Optional.ofNullable(query); | ||
} | ||
|
||
@Override | ||
public void close() throws Exception { | ||
AutoCloseables.close(statement); | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object other) { | ||
if (this == other) { | ||
return true; | ||
} | ||
if (!(other instanceof StatementContext)) { | ||
return false; | ||
} | ||
final StatementContext<?> that = (StatementContext<?>) other; | ||
return getStatement().equals(that.getStatement()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getStatement()); | ||
} | ||
} |