Bigtable column family snippets#7014
Conversation
Moved re after END tag to avoid confusion.
bigtable/docs/snippets_table.py
Outdated
|
|
||
|
|
||
| def test_bigtable_create_MaxVersionsGCRule(): | ||
| # [START bigtable_create_MaxVersionsGCRule] |
There was a problem hiding this comment.
use bigtable_create_family_gc_max_versions
bigtable/docs/snippets_table.py
Outdated
|
|
||
|
|
||
| def test_bigtable_create_MaxAgeGCRule(): | ||
| # [START bigtable_create_MaxAgeGCRule] |
There was a problem hiding this comment.
use bigtable_create_family_gc_max_age
bigtable/docs/snippets_table.py
Outdated
| assert column_family_id not in column_families | ||
|
|
||
|
|
||
| def test_bigtable_create_MaxVersionsGCRule(): |
There was a problem hiding this comment.
For consistency with other samples, can you put these in the following order and use these column family names:
cf1 with MaxAge GC Rule
cf2 with Max Versions GC Rule
cf3 with union GC rule
cf4 with Intersection GC rule
cf5 with a Nested GC rule (could you add this one similar to this sample https://github.com/GoogleCloudPlatform/python-docs-samples/blob/18f766ab2e84ea106c2fbedec2382f2061204934/bigtable/tableadmin/tableadmin.py#L151)
bigtable/docs/snippets_table.py
Outdated
|
|
||
|
|
||
| def test_bigtable_create_GCRuleUnion(): | ||
| # [START bigtable_create_GCRuleUnion] |
There was a problem hiding this comment.
use bigtable_create_family_gc_union
bigtable/docs/snippets_table.py
Outdated
|
|
||
|
|
||
| def test_bigtable_create_GCRuleIntersection(): | ||
| # [START bigtable_create_GCRuleIntersection] |
There was a problem hiding this comment.
use bigtable_create_family_gc_intersection
…ogle-cloud-python into bigtable_colfamily_snippets
|
Tests passed fine against my account. Failing for quota here. |
* add conditional row snippets
No description provided.