You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,10 +41,10 @@ module "bigquery" {
41
41
{
42
42
table_id = "foo",
43
43
schema = "<SCHEMA JSON DATA>",
44
+
require_partition_filter = false,
44
45
time_partitioning = {
45
46
type = "DAY",
46
47
field = null,
47
-
require_partition_filter = false,
48
48
expiration_ms = null,
49
49
},
50
50
range_partitioning = null,
@@ -116,10 +116,10 @@ The `tables` variable should be provided as a list of object with the following
116
116
table_id = "some_id" # Unique table id (will be used as ID for table).
117
117
table_name = "Friendly Name" # Optional friendly name for table. If not set, the "table_id" will be used by default.
118
118
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.
119
120
time_partitioning = { # Set it to `null` to omit partitioning configuration for the table.
120
121
type = "DAY", # The only type supported is DAY, which will generate one partition per day based on data loading time.
121
122
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.
123
123
expiration_ms = null, # Number of milliseconds for which to keep the storage for a partition.
124
124
},
125
125
range_partitioning = { # Set it to `null` to omit partitioning configuration for the table.
0 commit comments