Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
breezewish committed May 18, 2023
1 parent 565e2f9 commit 90e2f60
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions dbms/src/DataStreams/AddExtraTableIDColumnInputStream.h
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
// Copyright 2023 PingCAP, Ltd.
//
// 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 <DataStreams/AddExtraTableIDColumnTransformAction.h>
#include <DataStreams/IProfilingBlockInputStream.h>
#include <Storages/Transaction/Types.h>

namespace DB
{

/**
//
// 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 <DataStreams/AddExtraTableIDColumnTransformAction.h>
#include <DataStreams/IProfilingBlockInputStream.h>
#include <Storages/Transaction/Types.h>

namespace DB
{

/**
* Adds an extra TableID column to the block.
*/
class AddExtraTableIDColumnInputStream : public IProfilingBlockInputStream
{
static constexpr auto NAME = "AddExtraTableIDColumn";
class AddExtraTableIDColumnInputStream : public IProfilingBlockInputStream
{
static constexpr auto NAME = "AddExtraTableIDColumn";

public:
AddExtraTableIDColumnInputStream(
BlockInputStreamPtr input,
int extra_table_id_index,
TableID physical_table_id);
public:
AddExtraTableIDColumnInputStream(
BlockInputStreamPtr input,
int extra_table_id_index,
TableID physical_table_id);

String getName() const override { return NAME; }
String getName() const override { return NAME; }

Block getHeader() const override { return action.getHeader(); }
Block getHeader() const override { return action.getHeader(); }

protected:
Block readImpl() override;
protected:
Block readImpl() override;

private:
AddExtraTableIDColumnTransformAction action;
};
private:
AddExtraTableIDColumnTransformAction action;
};

} // namespace DB
} // namespace DB

0 comments on commit 90e2f60

Please sign in to comment.