| 20 | if method_defined?(:null_count_exact) |
| 21 | alias_method :null_count_raw, :null_count |
| 22 | def null_count |
| 23 | return nil unless has_null_count? |
| 24 | if null_count_exact? |
| 25 | null_count_exact |
| 26 | else |
| 27 | null_count_approximate |
| 28 | end |
| 29 | end |
| 30 | end |
| 31 | |
| 32 | if method_defined?(:distinct_count_exact) |
no outgoing calls