File tree Expand file tree Collapse file tree
parquet-cli/src/test/java/org/apache/parquet/cli/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222import static org .junit .Assert .assertTrue ;
2323import static org .junit .Assert .fail ;
2424
25+ import java .io .ByteArrayOutputStream ;
2526import java .io .File ;
2627import java .io .IOException ;
28+ import java .io .PrintStream ;
2729import java .nio .charset .StandardCharsets ;
2830import java .util .HashMap ;
2931import java .util .Map ;
5153import org .apache .parquet .schema .Types ;
5254import org .junit .Before ;
5355import org .junit .Test ;
54- import org .slf4j .LoggerFactory ;
55-
56- import java .io .ByteArrayOutputStream ;
57- import java .io .PrintStream ;
5856import org .slf4j .Logger ;
57+ import org .slf4j .LoggerFactory ;
5958
6059public class TestEncryptionInfoCommand extends ParquetFileTest {
6160
@@ -270,9 +269,8 @@ public void testFooterEncryptedFileWithKeys() throws IOException {
270269 FileDecryptionProperties decryptionProps = createDecryptionProperties ();
271270 Configuration verifyConf = new Configuration ();
272271
273- ParquetReadOptions readOptions = ParquetReadOptions .builder ()
274- .withDecryption (decryptionProps )
275- .build ();
272+ ParquetReadOptions readOptions =
273+ ParquetReadOptions .builder ().withDecryption (decryptionProps ).build ();
276274 InputFile inputFile = HadoopInputFile .fromPath (new Path (footerEncryptedFile .getPath ()), verifyConf );
277275
278276 try {
You can’t perform that action at this time.
0 commit comments