-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SNOW-1001928: Fix flaky test DatabaseMetaDataLatestIT.testHandlingSpe…
…cialChars (#1599) * SNOW-1001928: Fix flaky test DatabaseMetaDataLatestIT.testHandlingSpecialChars * SNOW-1001928: Create and drop schema in Metadata tests inside lambda
- Loading branch information
1 parent
e1ed9e6
commit 42f377a
Showing
4 changed files
with
265 additions
and
213 deletions.
There are no files selected for viewing
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
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,6 @@ | ||
package net.snowflake.client; | ||
|
||
@FunctionalInterface | ||
public interface ThrowingConsumer<T> { | ||
void call(T parameter) throws Exception; | ||
} |
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,6 @@ | ||
package net.snowflake.client; | ||
|
||
@FunctionalInterface | ||
public interface ThrowingRunnable { | ||
void run() throws Exception; | ||
} |
Oops, something went wrong.