Skip to content

Commit 0e7ae94

Browse files
committed
Update README examples
1 parent e27d2bb commit 0e7ae94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ module "bigquery" {
4141
{
4242
table_id = "foo",
4343
schema = "<SCHEMA JSON DATA>",
44+
require_partition_filter = false,
4445
time_partitioning = {
4546
type = "DAY",
4647
field = null,
47-
require_partition_filter = false,
4848
expiration_ms = null,
4949
},
5050
range_partitioning = null,
@@ -116,10 +116,10 @@ The `tables` variable should be provided as a list of object with the following
116116
table_id = "some_id" # Unique table id (will be used as ID for table).
117117
table_name = "Friendly Name" # Optional friendly name for table. If not set, the "table_id" will be used by default.
118118
schema = file("path/to/schema.json") # Schema as JSON string.
119+
require_partition_filter = false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Set it to `null` to omit configuration.
119120
time_partitioning = { # Set it to `null` to omit partitioning configuration for the table.
120121
type = "DAY", # The only type supported is DAY, which will generate one partition per day based on data loading time.
121122
field = null, # The field used to determine how to create a time-based partition. If time-based partitioning is enabled without this value, the table is partitioned based on the load time. Set it to `null` to omit configuration.
122-
require_partition_filter = false, # If set to true, queries over this table require a partition filter that can be used for partition elimination to be specified. Set it to `null` to omit configuration.
123123
expiration_ms = null, # Number of milliseconds for which to keep the storage for a partition.
124124
},
125125
range_partitioning = { # Set it to `null` to omit partitioning configuration for the table.

0 commit comments

Comments
 (0)