Returns a statistic with a given set of referential constraints.
(@Nullable List<RelReferentialConstraint> referentialConstraints)
| 40 | |
| 41 | /** Returns a statistic with a given set of referential constraints. */ |
| 42 | public static Statistic of(@Nullable List<RelReferentialConstraint> referentialConstraints) { |
| 43 | return of(null, null, |
| 44 | referentialConstraints, null); |
| 45 | } |
| 46 | |
| 47 | /** Returns a statistic with a given row count and set of unique keys. */ |
| 48 | public static Statistic of(final double rowCount, |