Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Commit

Permalink
NON-JIRA: Updated SLI bq view to fix datastudio bug
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-jasinski committed Sep 17, 2018
1 parent 3eda839 commit 03e8ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/SLI_history_dataset.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "google_bigquery_table" "SLI_backup_creation_latency_by_count_view" {
table_id = "SLI_backup_creation_latency_by_count_view"

view {
query = "SELECT xDays, count(*) as count FROM [${var.SLI_history_dataset}.SLI_backup_creation_latency_view] GROUP BY xDays"
query = "SELECT INTEGER(xDays) as xDays, count(*) as count FROM [${var.SLI_history_dataset}.SLI_backup_creation_latency_view] GROUP BY xDays"
use_legacy_sql = true
}

Expand Down

0 comments on commit 03e8ed2

Please sign in to comment.