IsAggregator returns true if the function name is an aggregation function.
()
| 227 | |
| 228 | // IsAggregator returns true if the function name is an aggregation function. |
| 229 | func (f *Function) IsAggregator() bool { |
| 230 | return isAggregator(f.Name) |
| 231 | } |
| 232 | |
| 233 | // IsPasswordVerifier returns true if the function name is "checkpwd". |
| 234 | func (f *Function) IsPasswordVerifier() bool { |
no test coverage detected