Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add table_constraints field to Table model #1755

Merged
merged 31 commits into from
Jan 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cea6e03
feat: add `table_constraints` field to Table model
dimkonko Dec 12, 2023
9e34810
Change `raise` to `return` in __eq__ methods
dimkonko Dec 16, 2023
5d034f4
Fix __eq__ for ColumnReference
dimkonko Dec 16, 2023
da663b2
Add column_references to ForeignKey __eq__
dimkonko Dec 16, 2023
29d1238
Add missing coverage
dimkonko Dec 16, 2023
51b3c58
Merge branch 'main' into main
chalmerlowe Jan 3, 2024
c69d717
Update google/cloud/bigquery/table.py
chalmerlowe Jan 3, 2024
8cdbc04
Update google/cloud/bigquery/table.py
chalmerlowe Jan 3, 2024
55054bb
Update google/cloud/bigquery/table.py
chalmerlowe Jan 3, 2024
9d49e50
Update tests/unit/test_table.py
chalmerlowe Jan 4, 2024
7bdfad9
Update tests/unit/test_table.py
chalmerlowe Jan 4, 2024
5145eb9
Update tests/unit/test_table.py
chalmerlowe Jan 4, 2024
cd1ee01
Update tests/unit/test_table.py
chalmerlowe Jan 5, 2024
dd8a16b
Update tests/unit/test_table.py
chalmerlowe Jan 5, 2024
1fa1cfd
Update tests/unit/test_table.py
chalmerlowe Jan 5, 2024
43ec134
Update tests/unit/test_table.py
chalmerlowe Jan 5, 2024
3b566b8
Update tests/unit/test_table.py
chalmerlowe Jan 5, 2024
34df1c6
Merge branch 'main' into main
chalmerlowe Jan 5, 2024
eec92da
Update google/cloud/bigquery/table.py
chalmerlowe Jan 8, 2024
a84edc4
Update google/cloud/bigquery/table.py
chalmerlowe Jan 8, 2024
bec1b4a
Update google/cloud/bigquery/table.py
chalmerlowe Jan 8, 2024
8e07232
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
60ba10c
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
75f3482
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
21cac59
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
69a7235
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
c6ac023
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
7f40eab
Update tests/unit/test_table.py
chalmerlowe Jan 8, 2024
1959ef9
Merge branch 'main' into main
chalmerlowe Jan 8, 2024
22256f6
Merge branch 'main' into main
chalmerlowe Jan 9, 2024
506afa4
Merge branch 'main' into main
chalmerlowe Jan 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tests/unit/test_table.py
  • Loading branch information
chalmerlowe authored Jan 8, 2024
commit 7f40eab9a3c930fb797e10c49169e10097dfb761
2 changes: 1 addition & 1 deletion tests/unit/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -5435,7 +5435,7 @@ def test__eq__columns_mismatch(self):
def test__eq__other_type(self):
primary_key = self._make_one(columns=["id", "product_id"])
with self.assertRaises(TypeError):
primary_key == 'This is not a Primary Key'
primary_key == "This is not a Primary Key"


class TestColumnReference(unittest.TestCase):
Expand Down