Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat: add support for javascript UDFs determinism level (#1094)
Fixes #1083
- Loading branch information
Showing
with
75 additions
and 9 deletions.
- +3 −8 google-cloud-bigquery/clirr-ignored-differences.xml
- +6 −0 google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/Routine.java
- +28 −0 google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/RoutineInfo.java
- +5 −0 google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/RoutineInfoTest.java
- +5 −0 google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/RoutineTest.java
- +28 −1 google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java
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
@@ -1,15 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<!-- TODO: REMOVE AFTER RELEASE --> | ||
<difference> | ||
<differenceType>7013</differenceType> | ||
<className>com/google/cloud/bigquery/RoutineInfo$Builder</className> | ||
<method>com.google.cloud.bigquery.RoutineInfo$Builder setDeterminismLevel(java.lang.String)</method> | ||
</difference> | ||
</differences> |
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
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
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