jen
04/22/2026, 4:52 PMSELECT a FROM <whatever> and I can do SELECT b FROM <whatever> and both of those work, but if I do SELECT a, b FROM <whatever> I get the “invalid or unsupported search”. Has anyone encountered anything similar?jen
04/22/2026, 4:53 PMMike Herrera
04/22/2026, 5:15 PMMike Herrera
04/22/2026, 5:23 PMjen
04/22/2026, 5:40 PMjen
04/22/2026, 5:40 PMSteven Scheppelman
04/22/2026, 9:03 PMSteven Scheppelman
04/22/2026, 9:04 PMjen
04/22/2026, 9:11 PMSteven Scheppelman
04/22/2026, 9:12 PMjen
04/22/2026, 9:12 PMjen
04/22/2026, 9:12 PMjen
04/22/2026, 9:13 PMjen
04/22/2026, 9:29 PMSteven Scheppelman
04/22/2026, 9:47 PMSteven Scheppelman
04/22/2026, 9:58 PMjen
04/22/2026, 10:56 PMjen
04/22/2026, 10:57 PMSELECT a, (SELECT b1 FROM <stuff> WHERE <otherstuff>) AS b but it works fine if I’m not also getting a (and vice-versa). a is in the GROUP BYjen
04/22/2026, 10:58 PMjen
04/22/2026, 10:59 PMSteven Scheppelman
04/22/2026, 11:01 PMjen
04/22/2026, 11:02 PMjen
04/22/2026, 11:02 PMjen
04/22/2026, 11:02 PMjen
04/22/2026, 11:03 PMjen
04/22/2026, 11:03 PMSteven Scheppelman
04/22/2026, 11:06 PMjen
04/22/2026, 11:10 PMSteven Scheppelman
04/22/2026, 11:11 PMjen
04/22/2026, 11:11 PMSteven Scheppelman
04/22/2026, 11:11 PMSteven Scheppelman
04/22/2026, 11:11 PMjen
04/22/2026, 11:11 PMjen
04/22/2026, 11:11 PMjen
04/22/2026, 11:12 PMSteven Scheppelman
04/22/2026, 11:12 PMjen
04/22/2026, 11:12 PMjen
04/22/2026, 11:12 PMjen
04/22/2026, 11:12 PMjen
04/22/2026, 11:13 PMjen
04/22/2026, 11:14 PMjen
04/22/2026, 11:14 PMSteven Scheppelman
04/22/2026, 11:15 PMjen
04/22/2026, 11:15 PMjen
04/22/2026, 11:16 PMjen
04/22/2026, 11:16 PMjen
04/22/2026, 11:16 PMcreece
04/23/2026, 4:10 PMjen
04/23/2026, 4:38 PMCraig Haroldson
04/27/2026, 6:40 PMGROUP BY clause is involved.
Additionally, while this error can sometimes indicate a performance-related issue, such as inefficient sorting or a poorly structured query, our review of the backend logs did not show any signs of performance degradation in this case."
That response does not explain why it happens in only one account nor does it address why it started failing suddenly (overnight). Numerous attempts to get those answers have resulted in just repeating the above response.
In another situation, we have a query that fails about 80% of the time it runs and, again, only in one of our client accounts (and a different account than above). In 30 other accounts, it works fine, no errors. This particular account it started failing more and more often in mid-April. When it was deployed in February, it was failing less than 5% of the time.
Both cases it throws the same error "Invalid or unsupported search".jen
04/27/2026, 6:42 PMjen
04/27/2026, 6:42 PMCraig Haroldson
04/27/2026, 6:49 PMSELECT st.id, st.date, st.name FROM sometable AS st ORDER BY st.date DESC
Do this:
SELECT st.id, st.date AS st_date, st.name FROM sometable AS st ORDER BY st_date DESC