(String columnName, int numBins)
| 1081 | |
| 1082 | // for backward compatibility |
| 1083 | public List<HistogramBin> getVectorHistogram_Hive(String columnName, int numBins) throws DDFException { |
| 1084 | return getVectorApproxHistogram(columnName, numBins); |
| 1085 | } |
| 1086 | public List<HistogramBin> getVectorApproxHistogram(String columnName, int numBins) throws DDFException { |
| 1087 | // TODO need to check columnName |
| 1088 | return this.getBinningHandler().getVectorApproxHistogram(columnName, numBins); |
nothing calls this directly
no test coverage detected