For example, I set the matching pattern to (“NewEnergy“, “Solar“) using the following script:
where (index_full_name like "%NewEnergy%" or index_full_name like "%Solar%")
However, an error occurs: The where clause [any(index_full_name like:R ["%NewEnergy%","%Solar%"])] of a distributed/partitioned sql shouldn't use any aggregate or order-sensitive function.
You can use
rowOr(index_full_name like:R ["%NewEnergy%", "%Solar%"])in the where clause, as shown in the following metaprogramming script: