How to exclude rules of Analyzer?

Viewed 57

I have found that we can use spark.sql.optimizer.excludedRules to exclude rules in optimizer. I want to known is there any config to exclude rules in analyzer?

2 Answers

There is no such a configuration property.

I think there's no way but to write your own Analyzer.

Related