-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat add cupport for clone * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: fix test * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: Clone definition is not a table definition * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: remove CLONE from Table definition * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: fix license header * chore: check for null * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: add clirr ignored differences * chore: fix test --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
9daab17
commit 2186c64
Showing
9 changed files
with
237 additions
and
5 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
85 changes: 85 additions & 0 deletions
85
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/CloneDefinition.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,85 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Licensed 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 com.google.cloud.bigquery; | ||
|
||
import com.google.api.client.util.DateTime; | ||
import com.google.api.core.BetaApi; | ||
import com.google.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import java.io.Serializable; | ||
import javax.annotation.Nullable; | ||
|
||
@AutoValue | ||
@BetaApi | ||
public abstract class CloneDefinition implements Serializable { | ||
|
||
private static final long serialVersionUID = 1460853787400450649L; | ||
|
||
public static Builder newBuilder() { | ||
return new AutoValue_CloneDefinition.Builder(); | ||
} | ||
|
||
static CloneDefinition fromPb( | ||
com.google.api.services.bigquery.model.CloneDefinition cloneDefinition) { | ||
Builder builder = newBuilder(); | ||
|
||
if (cloneDefinition.getCloneTime() != null) { | ||
builder.setCloneTime(cloneDefinition.getCloneTime().toString()); | ||
} | ||
if (cloneDefinition.getBaseTableReference() != null) { | ||
builder.setBaseTableId(TableId.fromPb(cloneDefinition.getBaseTableReference())); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
@Nullable | ||
public abstract TableId getBaseTableId(); | ||
|
||
@Nullable | ||
public abstract String getCloneTime(); | ||
|
||
/** Returns a builder for a Clone table definition. */ | ||
@VisibleForTesting | ||
public abstract Builder toBuilder(); | ||
|
||
com.google.api.services.bigquery.model.CloneDefinition toPb() { | ||
|
||
com.google.api.services.bigquery.model.CloneDefinition cloneDefinition = | ||
new com.google.api.services.bigquery.model.CloneDefinition(); | ||
cloneDefinition.setBaseTableReference(getBaseTableId().toPb()); | ||
cloneDefinition.setCloneTime(DateTime.parseRfc3339(getCloneTime())); | ||
|
||
return cloneDefinition; | ||
} | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
|
||
/** Reference describing the ID of the table that was Cloned. * */ | ||
public abstract Builder setBaseTableId(TableId baseTableId); | ||
|
||
/** | ||
* The time at which the base table was Cloned. This value is reported in the JSON response | ||
* using RFC3339 format. * | ||
*/ | ||
public abstract Builder setCloneTime(String dateTime); | ||
|
||
/** Creates a {@code CloneDefinition} object. */ | ||
public abstract CloneDefinition build(); | ||
} | ||
} |
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
58 changes: 58 additions & 0 deletions
58
google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/CloneDefinitionTest.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,58 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Licensed 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 com.google.cloud.bigquery; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
import org.junit.Test; | ||
|
||
public class CloneDefinitionTest { | ||
private static final TableId BASE_TABLE_ID = TableId.of("DATASET_NAME", "BASE_TABLE_NAME"); | ||
private static final String CLONE_TIME = "2021-05-19T11:32:26.553Z"; | ||
private static final CloneDefinition CLONETABLE_DEFINITION = | ||
CloneDefinition.newBuilder().setBaseTableId(BASE_TABLE_ID).setCloneTime(CLONE_TIME).build(); | ||
|
||
@Test | ||
public void testToBuilder() { | ||
compareCloneTableDefinition(CLONETABLE_DEFINITION, CLONETABLE_DEFINITION.toBuilder().build()); | ||
CloneDefinition cloneTableDefinition = | ||
CLONETABLE_DEFINITION.toBuilder().setCloneTime("2021-05-20T11:32:26.553Z").build(); | ||
assertEquals("2021-05-20T11:32:26.553Z", cloneTableDefinition.getCloneTime()); | ||
} | ||
|
||
@Test | ||
public void testBuilder() { | ||
assertEquals(BASE_TABLE_ID, CLONETABLE_DEFINITION.getBaseTableId()); | ||
assertEquals(CLONE_TIME, CLONETABLE_DEFINITION.getCloneTime()); | ||
CloneDefinition cloneDefinition = | ||
CloneDefinition.newBuilder().setBaseTableId(BASE_TABLE_ID).setCloneTime(CLONE_TIME).build(); | ||
assertEquals(CLONETABLE_DEFINITION, cloneDefinition); | ||
} | ||
|
||
@Test | ||
public void testToAndFromPb() { | ||
CloneDefinition cloneDefinition = CLONETABLE_DEFINITION.toBuilder().build(); | ||
assertTrue(CloneDefinition.fromPb(cloneDefinition.toPb()) instanceof CloneDefinition); | ||
compareCloneTableDefinition(cloneDefinition, CloneDefinition.fromPb(cloneDefinition.toPb())); | ||
} | ||
|
||
private void compareCloneTableDefinition(CloneDefinition expected, CloneDefinition value) { | ||
assertEquals(expected.getBaseTableId(), value.getBaseTableId()); | ||
assertEquals(expected.getCloneTime(), value.getCloneTime()); | ||
} | ||
} |
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