Skip to content

Commit 0e0dcb7

Browse files
authored
fix: re-adds test utility method for connection (#1178)
Re-adds test utility method, which had its signature changed. Marks the re-added method as deprecated and delegates execution to the new one. This should prevent compilation errors for the projects that are using it.
1 parent 6b11a46 commit 0e0dcb7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/AbstractSqlScriptVerifier.java

+21
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,27 @@ public void verifyStatementsInFile(String filename, Class<?> resourceClass, bool
220220
verifyStatementsInFile(null, filename, resourceClass, allowParallel);
221221
}
222222

223+
/**
224+
* Reads sql statements from the specified file name and executes and verifies these. Statements
225+
* that are preceded by an @EXPECT statement are verified against the @EXPECT specification.
226+
* Statements without an @EXPECT statement will be executed and its result will be ignored, unless
227+
* the statement throws an exception, which will fail the test case.
228+
*
229+
* <p>The {@link com.google.cloud.spanner.jdbc.Connection}s that the statements are executed on
230+
* must be created by a {@link GenericConnectionProvider}
231+
*
232+
* @param filename The file name containing the statements. Statements must be separated by a
233+
* semicolon (;)
234+
* @param resourceClass The class that should be used to locate the resource specified by the file
235+
* name
236+
* @deprecated use {@link AbstractSqlScriptVerifier#verifyStatementsInFile(String, Class,
237+
* boolean)} instead. This method does not allow parallel batch execution.
238+
*/
239+
@Deprecated
240+
public void verifyStatementsInFile(String filename, Class<?> resourceClass) throws Exception {
241+
this.verifyStatementsInFile(filename, resourceClass, false);
242+
}
243+
223244
/**
224245
* Reads sql statements from the specified file name and executes and verifies these. Statements
225246
* that are preceded by an @EXPECT statement are verified against the @EXPECT specification.

0 commit comments

Comments
 (0)