Skip to content

Commit

Permalink
xx
Browse files Browse the repository at this point in the history
  • Loading branch information
kewang1024 committed Nov 2, 2024
1 parent 0974ea7 commit 7c3ed54
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 19 deletions.
36 changes: 18 additions & 18 deletions velox/dwio/common/tests/FaultyFileSink.h
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#pragma once

#include <chrono>

#include "velox/common/config/Config.h"
#include "velox/common/file/File.h"
#include "velox/common/file/tests/FaultyFile.h"
#include "velox/common/io/IoStatistics.h"
#include "velox/dwio/common/Closeable.h"
#include "velox/dwio/common/DataBuffer.h"
#include "velox/dwio/common/MetricsLog.h"
#include "velox/dwio/common/FileSink.h"
#include "velox/common/file/tests/FaultyFile.h"
#include "velox/dwio/common/MetricsLog.h"

namespace facebook::velox::dwio::common {
using namespace facebook::velox::io;

class FaultyFileSink : public LocalFileSink {
public:
FaultyFileSink(const std::string& name, const Options& options);
public:
FaultyFileSink(const std::string& name, const Options& options);
};

void registerFaultyFileSinks();
Expand Down
3 changes: 2 additions & 1 deletion velox/exec/fuzzer/WriterFuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ void WriterFuzzer::go() {

auto faultyFs = std::dynamic_pointer_cast<FaultyFileSystem>(
filesystems::getFileSystem(tempDirPath->getPath(), {}));
bool writeErrorInjected = injectWriterError(faultyFs, tempDirPath, partitionKeys);
bool writeErrorInjected =
injectWriterError(faultyFs, tempDirPath, partitionKeys);

verifyWriter(
input,
Expand Down

0 comments on commit 7c3ed54

Please sign in to comment.