Using Concat in SQL Query Editor Throws Permissions Error

Hey, this seems like a bug to me unless anyone here has any ideas.

I am doing this as an administrator.

For example, both of these queries lead to " Sorry, you don’t have permission to see that."

SELECT
CONCAT(City, ", ", State) AS "Location"
FROM
People;

SELECT CONCAT ("a","b")

Whereas something like
SELECT "1" will work.


Hi @cbeauch
Sounds like you are using a reverse-proxy:
https://www.metabase.com/docs/latest/troubleshooting-guide/proxies.html

I am, yes. Thank you I will look into that

Changing some of the WAF filters resolved the issue. Thanks again