File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
firestore-bigquery-export Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ ## Version 0.2.6
2+
3+ docs: update docs to reference the correct "latest" view names
4+
15## Version 0.2.5
26
37fix: keep partition value on delete using old data
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ There are two types of materialized views available:
8686
8787Example of a non-incremental materialized view SQL definition generated by the extension:
8888``` sql
89- CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_changelog `
89+ CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_latest `
9090 OPTIONS (
9191 allow_non_incremental_definition = true,
9292 enable_refresh = true,
@@ -115,7 +115,7 @@ CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
115115
116116Example of an incremental materialized view SQL definition generated by the extension:
117117``` sql
118- CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_changelog `
118+ CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_latest `
119119 OPTIONS (
120120 enable_refresh = true,
121121 refresh_interval_minutes = 60 ,
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ There are two types of materialized views available:
9494
9595Example of a non-incremental materialized view SQL definition generated by the extension:
9696``` sql
97- CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_changelog `
97+ CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_latest `
9898 OPTIONS (
9999 allow_non_incremental_definition = true,
100100 enable_refresh = true,
@@ -123,7 +123,7 @@ CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
123123
124124Example of an incremental materialized view SQL definition generated by the extension:
125125``` sql
126- CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_changelog `
126+ CREATE MATERIALIZED VIEW ` my_project.my_dataset.my_table_raw_latest `
127127 OPTIONS (
128128 enable_refresh = true,
129129 refresh_interval_minutes = 60 ,
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515name : firestore-bigquery-export
16- version : 0.2.5
16+ version : 0.2.6
1717specVersion : v1beta
1818
1919displayName : Stream Firestore to BigQuery
You can’t perform that action at this time.
0 commit comments