Skip to content

Commit

Permalink
[SPARK-41962][MINOR][SQL] Update the order of imports in class Specif…
Browse files Browse the repository at this point in the history
…icParquetRecordReaderBase

### What changes were proposed in this pull request?
Update the order of imports in class SpecificParquetRecordReaderBase.

### Why are the changes needed?
Follow the code style.

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
Passed GA.

Closes #39906 from wayneguow/import.

Authored-by: wayneguow <guow93@gmail.com>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
(cherry picked from commit d6134f7)
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
  • Loading branch information
wayneguow authored and HyukjinKwon committed Feb 7, 2023
1 parent 17b7123 commit 51ed6ba
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@
import java.util.Map;
import java.util.Set;

import com.google.common.annotations.VisibleForTesting;
import org.apache.parquet.VersionParser;
import org.apache.parquet.VersionParser.ParsedVersion;
import org.apache.parquet.column.page.PageReadStore;
import scala.Option;

import com.google.common.annotations.VisibleForTesting;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.mapred.FileSplit;
Expand All @@ -42,6 +39,9 @@
import org.apache.hadoop.mapreduce.TaskAttemptContext;
import org.apache.parquet.HadoopReadOptions;
import org.apache.parquet.ParquetReadOptions;
import org.apache.parquet.VersionParser;
import org.apache.parquet.VersionParser.ParsedVersion;
import org.apache.parquet.column.page.PageReadStore;
import org.apache.parquet.hadoop.BadConfigurationException;
import org.apache.parquet.hadoop.ParquetFileReader;
import org.apache.parquet.hadoop.ParquetInputFormat;
Expand All @@ -51,6 +51,7 @@
import org.apache.parquet.hadoop.util.HadoopInputFile;
import org.apache.parquet.schema.MessageType;
import org.apache.parquet.schema.Types;

import org.apache.spark.TaskContext;
import org.apache.spark.TaskContext$;
import org.apache.spark.sql.internal.SQLConf;
Expand Down

0 comments on commit 51ed6ba

Please sign in to comment.