(byte[] stripe, int offset, int length,
StripeInformation stripeInfo,
OrcProto.StripeStatistics stripeStatistics
)
| 859 | } |
| 860 | |
| 861 | @Override |
| 862 | public void appendStripe(byte[] stripe, int offset, int length, |
| 863 | StripeInformation stripeInfo, |
| 864 | OrcProto.StripeStatistics stripeStatistics |
| 865 | ) throws IOException { |
| 866 | appendStripe(stripe, offset, length, stripeInfo, |
| 867 | new StripeStatistics[]{ |
| 868 | new StripeStatisticsImpl(schema, stripeStatistics.getColStatsList(), |
| 869 | false, false)}); |
| 870 | } |
| 871 | |
| 872 | @Override |
| 873 | public void appendStripe(byte[] stripe, int offset, int length, |
nothing calls this directly
no test coverage detected