-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: bigquery table acls * incremental updates * syntax * cleanup warnings * add policy conversion tests * add BigQueryImpl testing * cleanup tests * address mock issue * plumb in testIamPermissions and impl test * add integration test * drop empty check * allow more permissive policy conversions for (empty bindings) * more null fun * add clirr-ignored-differences.xml for new methods added to interfaces Co-authored-by: stephwang <stephwang@google.com>
- Loading branch information
1 parent
f08becc
commit f0e67d8
Showing
13 changed files
with
980 additions
and
403 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html --> | ||
<differences> | ||
<!--TODO: To be removed--> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/BigQuery</className> | ||
<method>com.google.cloud.Policy getIamPolicy(com.google.cloud.bigquery.TableId, com.google.cloud.bigquery.BigQuery$IAMOption[])</method> | ||
</difference> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/BigQuery</className> | ||
<method>com.google.cloud.Policy setIamPolicy(com.google.cloud.bigquery.TableId, com.google.cloud.Policy, com.google.cloud.bigquery.BigQuery$IAMOption[])</method> | ||
</difference> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/BigQuery</className> | ||
<method>java.util.List testIamPermissions(com.google.cloud.bigquery.TableId, java.util.List, com.google.cloud.bigquery.BigQuery$IAMOption[])</method> | ||
</difference> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/spi/v2/BigQueryRpc</className> | ||
<method>com.google.api.services.bigquery.model.Policy getIamPolicy(java.lang.String, java.util.Map)</method> | ||
</difference> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/spi/v2/BigQueryRpc</className> | ||
<method>com.google.api.services.bigquery.model.Policy setIamPolicy(java.lang.String, com.google.api.services.bigquery.model.Policy, java.util.Map)</method> | ||
</difference> | ||
<difference> | ||
<differenceType>7012</differenceType> | ||
<className>com/google/cloud/bigquery/spi/v2/BigQueryRpc</className> | ||
<method>com.google.api.services.bigquery.model.TestIamPermissionsResponse testIamPermissions(java.lang.String, java.util.List, java.util.Map)</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
Oops, something went wrong.