Skip to content

Commit 8e9165e

Browse files
authored
GH-14990: [C++][Skyhook] Follow FileFormat API change (#15086)
`arrow::dataset::FileFormat`'s constructor API was changed in ARROW-17288/GH-14663. * Closes: #14990 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 474b1a5 commit 8e9165e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cpp/src/skyhook/client/file_skyhook.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17+
1718
#include "skyhook/client/file_skyhook.h"
1819
#include "skyhook/protocol/rados_protocol.h"
1920
#include "skyhook/protocol/skyhook_protocol.h"
@@ -132,7 +133,7 @@ arrow::Result<std::shared_ptr<SkyhookFileFormat>> SkyhookFileFormat::Make(
132133

133134
SkyhookFileFormat::SkyhookFileFormat(std::shared_ptr<RadosConnCtx> ctx,
134135
std::string file_format)
135-
: impl_(new Impl(std::move(ctx), std::move(file_format))) {}
136+
: FileFormat(nullptr), impl_(new Impl(std::move(ctx), std::move(file_format))) {}
136137

137138
SkyhookFileFormat::~SkyhookFileFormat() = default;
138139

0 commit comments

Comments
 (0)