I have two tables that are just huge and I don’t want to union them, so I was thinking I could just toggle between the two.
I have the below in lookml, but I’m getting this error in the dashboard. how can I get this to pass to read as a BQ table?
‘Filter on unquoted field benchmark_rez.data_source must contain only underscores, numbers, letters, ‘.’, or ‘$’.’
view: benchmark_rez {
derived_table: {
sql: SELECT * FROM {% parameter data_source %} ;;
}
parameter: data_source {
label: “Booking or Arrival”
type: unquoted
allowed_value: {
label: "Book Date"
value: "(PII Removed by Staff).benchmark.benchmark-rez"
}
allowed_value: {
label : "Arrival Date"
value: "(PII Removed by Staff).benchmark.benchmark-rez-other"
}
}