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
Cant do query on episodes view table on metabase based on tagID. Trying to create a new column/ apply a filter based on tag id
contains([TagIDs] , "1175")
and got this error
400 Bad Request POST https://www.googleapis.com/bigquery/v2/projects/bccm-k8s-main/queries { "code": 400, "errors": [ { "domain": "global", "location": "q", "locationType": "parameter", "message": "No matching signature for operator LIKE for argument types: JSON, STRING. Supported signatures: STRING LIKE STRING; BYTES LIKE BYTES at [2:1877]", "reason": "invalidQuery" } ], "message": "No matching signature for operator LIKE for argument types: JSON, STRING. Supported signatures: STRING LIKE STRING; BYTES LIKE BYTES at [2:1877]", "status": "INVALID_ARGUMENT" }
given that there is an episode with the following tag id
400 Bad Request POST https://www.googleapis.com/bigquery/v2/projects/bccm-k8s-main/queries { "code": 400, "errors": [ { "domain": "global", "location": "q", "locationType": "parameter", "message": "No matching signature for operator = for argument types: JSON, STRING. Supported signature: ANY = ANY at [2:1876]", "reason": "invalidQuery" } ], "message": "No matching signature for operator = for argument types: JSON, STRING. Supported signature: ANY = ANY at [2:1876]", "status": "INVALID_ARGUMENT" }
The text was updated successfully, but these errors were encountered:
Cant do query on episodes view table on metabase based on tagID. Trying to create a new column/ apply a filter based on tag id
contains([TagIDs] , "1175")
and got this error
400 Bad Request POST https://www.googleapis.com/bigquery/v2/projects/bccm-k8s-main/queries { "code": 400, "errors": [ { "domain": "global", "location": "q", "locationType": "parameter", "message": "No matching signature for operator LIKE for argument types: JSON, STRING. Supported signatures: STRING LIKE STRING; BYTES LIKE BYTES at [2:1877]", "reason": "invalidQuery" } ], "message": "No matching signature for operator LIKE for argument types: JSON, STRING. Supported signatures: STRING LIKE STRING; BYTES LIKE BYTES at [2:1877]", "status": "INVALID_ARGUMENT" }
given that there is an episode with the following tag id
rudderstack_prod.episodes_view
.TagIDs
= '[294,297,157,316]'Would still get
400 Bad Request POST https://www.googleapis.com/bigquery/v2/projects/bccm-k8s-main/queries { "code": 400, "errors": [ { "domain": "global", "location": "q", "locationType": "parameter", "message": "No matching signature for operator = for argument types: JSON, STRING. Supported signature: ANY = ANY at [2:1876]", "reason": "invalidQuery" } ], "message": "No matching signature for operator = for argument types: JSON, STRING. Supported signature: ANY = ANY at [2:1876]", "status": "INVALID_ARGUMENT" }
The text was updated successfully, but these errors were encountered: