You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
clang format apply
This commit is contained in:
@ -37,38 +37,37 @@
|
||||
|
||||
namespace joblist
|
||||
{
|
||||
|
||||
class RTSCommandJL : public CommandJL
|
||||
{
|
||||
public:
|
||||
RTSCommandJL(const pColStep&, const pDictionaryStep&);
|
||||
RTSCommandJL(const PassThruStep&, const pDictionaryStep&);
|
||||
virtual ~RTSCommandJL();
|
||||
public:
|
||||
RTSCommandJL(const pColStep&, const pDictionaryStep&);
|
||||
RTSCommandJL(const PassThruStep&, const pDictionaryStep&);
|
||||
virtual ~RTSCommandJL();
|
||||
|
||||
void setLBID(uint64_t data, uint32_t dbroot); // converts a rid or dictionary token to an LBID. For ColumnCommandJL it's a RID, for a DictStep it's a token.
|
||||
uint8_t getTableColumnType();
|
||||
std::string toString();
|
||||
bool isPassThru()
|
||||
{
|
||||
return (passThru != 0);
|
||||
}
|
||||
uint16_t getWidth();
|
||||
CommandType getCommandType()
|
||||
{
|
||||
return RID_TO_STRING;
|
||||
}
|
||||
void setLBID(uint64_t data, uint32_t dbroot); // converts a rid or dictionary token to an LBID. For
|
||||
// ColumnCommandJL it's a RID, for a DictStep it's a token.
|
||||
uint8_t getTableColumnType();
|
||||
std::string toString();
|
||||
bool isPassThru()
|
||||
{
|
||||
return (passThru != 0);
|
||||
}
|
||||
uint16_t getWidth();
|
||||
CommandType getCommandType()
|
||||
{
|
||||
return RID_TO_STRING;
|
||||
}
|
||||
|
||||
void createCommand(messageqcpp::ByteStream&) const;
|
||||
void runCommand(messageqcpp::ByteStream&) const;
|
||||
void createCommand(messageqcpp::ByteStream&) const;
|
||||
void runCommand(messageqcpp::ByteStream&) const;
|
||||
|
||||
private:
|
||||
RTSCommandJL();
|
||||
RTSCommandJL(const RTSCommandJL&);
|
||||
|
||||
boost::scoped_ptr<ColumnCommandJL> col;
|
||||
boost::scoped_ptr<DictStepJL> dict;
|
||||
uint8_t passThru;
|
||||
};
|
||||
private:
|
||||
RTSCommandJL();
|
||||
RTSCommandJL(const RTSCommandJL&);
|
||||
|
||||
boost::scoped_ptr<ColumnCommandJL> col;
|
||||
boost::scoped_ptr<DictStepJL> dict;
|
||||
uint8_t passThru;
|
||||
};
|
||||
|
||||
}; // namespace joblist
|
||||
|
Reference in New Issue
Block a user