Hi,
I built the query
metrics.clicks,
metrics.impressions,
metrics.value_per_conversion
FROM campaign
WHERE campaign.labels CONTAINS ANY ('customers/9580700888/labels/11111')
AND metrics.impressions > 0"
and it is a valid query according to query validator; however when I run the query it creates the following error:
"_InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "Internal error encountered."
debug_error_string = "{"created":"@1630403328.485000000","description":"Error received from peer ipv4:
74.125.193.95:443","file":"src/core/lib/surface/call.cc","file_line":1070,"grpc_message":"Internal error encountered.","grpc_status":13}"
>
problem is beacues of the line "campaign.labels CONTAINS ANY ('customers/9580700888/labels/11111')". But it seems legit. What is the problem? I could not find the solution