-
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 primary key and foreign keys (#2744)
Add support for creating/updating primary and foreign keys Internal b/284849902
- Loading branch information
Showing
16 changed files
with
1,143 additions
and
1 deletion.
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
79 changes: 79 additions & 0 deletions
79
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/ColumnReference.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,79 @@ | ||
/* | ||
* 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.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import javax.annotation.Nullable; | ||
|
||
@AutoValue | ||
public abstract class ColumnReference { | ||
public static ColumnReference.Builder newBuilder() { | ||
return new AutoValue_ColumnReference.Builder(); | ||
} | ||
|
||
static ColumnReference fromPb( | ||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys.ColumnReferences | ||
columnReference) { | ||
ColumnReference.Builder builder = newBuilder(); | ||
|
||
if (columnReference.getReferencedColumn() != null) { | ||
builder.setReferencedColumn(columnReference.getReferencedColumn()); | ||
} | ||
|
||
if (columnReference.getReferencingColumn() != null) { | ||
builder.setReferencingColumn(columnReference.getReferencingColumn()); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys.ColumnReferences toPb() { | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys.ColumnReferences | ||
columnReference = | ||
new com.google.api.services.bigquery.model.TableConstraints.ForeignKeys | ||
.ColumnReferences(); | ||
columnReference.setReferencedColumn(getReferencedColumn()); | ||
columnReference.setReferencingColumn(getReferencingColumn()); | ||
|
||
return columnReference; | ||
} | ||
|
||
@Nullable | ||
public abstract String getReferencedColumn(); | ||
|
||
@Nullable | ||
public abstract String getReferencingColumn(); | ||
|
||
/** Returns a builder for column reference. */ | ||
@VisibleForTesting | ||
public abstract ColumnReference.Builder toBuilder(); | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
|
||
/** The target column of this reference. * */ | ||
public abstract ColumnReference.Builder setReferencedColumn(String referencedColumn); | ||
|
||
/** The source column of this reference. * */ | ||
public abstract ColumnReference.Builder setReferencingColumn(String referencingColumn); | ||
|
||
/** Creates a {@code ColumnReference} object. */ | ||
public abstract ColumnReference build(); | ||
} | ||
} |
110 changes: 110 additions & 0 deletions
110
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/ForeignKey.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,110 @@ | ||
/* | ||
* 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.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import java.io.Serializable; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import javax.annotation.Nullable; | ||
|
||
@AutoValue | ||
public abstract class ForeignKey implements Serializable { | ||
public static ForeignKey.Builder newBuilder() { | ||
return new AutoValue_ForeignKey.Builder(); | ||
} | ||
|
||
static ForeignKey fromPb( | ||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys foreignKey) { | ||
ForeignKey.Builder builder = newBuilder(); | ||
|
||
if (foreignKey.getName() != null) { | ||
builder.setName(foreignKey.getName()); | ||
} | ||
|
||
if (foreignKey.getReferencedTable() != null) { | ||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys.ReferencedTable | ||
referencedTable = foreignKey.getReferencedTable(); | ||
builder.setReferencedTable( | ||
TableId.of( | ||
referencedTable.getProjectId(), | ||
referencedTable.getDatasetId(), | ||
referencedTable.getTableId())); | ||
} | ||
|
||
if (foreignKey.getColumnReferences() != null) { | ||
builder.setColumnReferences( | ||
foreignKey.getColumnReferences().stream() | ||
.map(ColumnReference::fromPb) | ||
.collect(Collectors.toList())); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys toPb() { | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.ForeignKeys foreignKey = | ||
new com.google.api.services.bigquery.model.TableConstraints.ForeignKeys(); | ||
if (getName() != null) { | ||
foreignKey.setName(getName()); | ||
} | ||
if (getReferencedTable() != null) { | ||
TableId referencedTableId = getReferencedTable(); | ||
foreignKey.setReferencedTable( | ||
new com.google.api.services.bigquery.model.TableConstraints.ForeignKeys.ReferencedTable() | ||
.setTableId(referencedTableId.getTable()) | ||
.setDatasetId(referencedTableId.getDataset()) | ||
.setProjectId(referencedTableId.getProject())); | ||
} | ||
if (getColumnReferences() != null) { | ||
foreignKey.setColumnReferences( | ||
getColumnReferences().stream().map(ColumnReference::toPb).collect(Collectors.toList())); | ||
} | ||
return foreignKey; | ||
} | ||
|
||
@Nullable | ||
public abstract String getName(); | ||
|
||
@Nullable | ||
public abstract TableId getReferencedTable(); | ||
|
||
@Nullable | ||
public abstract List<ColumnReference> getColumnReferences(); | ||
|
||
/** Returns a builder for foreign key. */ | ||
@VisibleForTesting | ||
public abstract ForeignKey.Builder toBuilder(); | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
|
||
/** The name of the foreign key. * */ | ||
public abstract ForeignKey.Builder setName(String name); | ||
|
||
/** The table referenced by this foreign key. * */ | ||
public abstract ForeignKey.Builder setReferencedTable(TableId referencedTable); | ||
|
||
/** The set of column references for this foreign key. * */ | ||
public abstract ForeignKey.Builder setColumnReferences(List<ColumnReference> columnReferences); | ||
|
||
/** Creates a {@code ForignKey} object. */ | ||
public abstract ForeignKey build(); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/PrimaryKey.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,68 @@ | ||
/* | ||
* 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.auto.value.AutoValue; | ||
import com.google.common.annotations.VisibleForTesting; | ||
import java.io.Serializable; | ||
import java.util.List; | ||
import javax.annotation.Nullable; | ||
|
||
@AutoValue | ||
public abstract class PrimaryKey implements Serializable { | ||
public static PrimaryKey.Builder newBuilder() { | ||
return new AutoValue_PrimaryKey.Builder(); | ||
} | ||
|
||
static PrimaryKey fromPb( | ||
com.google.api.services.bigquery.model.TableConstraints.PrimaryKey primaryKey) { | ||
PrimaryKey.Builder builder = newBuilder(); | ||
|
||
if (primaryKey.getColumns() != null) { | ||
builder.setColumns(primaryKey.getColumns()); | ||
} | ||
|
||
return builder.build(); | ||
} | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.PrimaryKey toPb() { | ||
|
||
com.google.api.services.bigquery.model.TableConstraints.PrimaryKey primaryKey = | ||
new com.google.api.services.bigquery.model.TableConstraints.PrimaryKey(); | ||
if (getColumns() != null) { | ||
primaryKey.setColumns(getColumns()); | ||
} | ||
return primaryKey; | ||
} | ||
|
||
@Nullable | ||
public abstract List<String> getColumns(); | ||
|
||
/** Returns a builder for primary key. */ | ||
@VisibleForTesting | ||
public abstract PrimaryKey.Builder toBuilder(); | ||
|
||
@AutoValue.Builder | ||
public abstract static class Builder { | ||
|
||
/** The column names that are primary keys. * */ | ||
public abstract PrimaryKey.Builder setColumns(List<String> columns); | ||
|
||
/** Creates a {@code PrimaryKey} object. */ | ||
public abstract PrimaryKey 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
Oops, something went wrong.