Skip to content

Commit

Permalink
Move to end
Browse files Browse the repository at this point in the history
  • Loading branch information
acvictor committed Jun 3, 2024
1 parent 109fec1 commit f707c18
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion velox/connectors/hive/HiveConnectorSplit.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ struct HiveConnectorSplit : public connector::ConnectorSplit {
dwio::common::FileFormat fileFormat;
const uint64_t start;
const uint64_t length;
std::optional<FileProperties> properties;

/// Mapping from partition keys to values. Values are specified as strings
/// formatted the same way as CAST(x as VARCHAR). Null values are specified as
Expand All @@ -45,6 +44,10 @@ struct HiveConnectorSplit : public connector::ConnectorSplit {
/// associated with the HiveSplit.
std::unordered_map<std::string, std::string> infoColumns;

/// These represent file properties like file size that are used while opening
/// the file handle
std::optional<FileProperties> properties;

HiveConnectorSplit(
const std::string& connectorId,
const std::string& _filePath,
Expand Down

0 comments on commit f707c18

Please sign in to comment.