You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Reformat all code to coding standard
This commit is contained in:
@ -33,35 +33,35 @@ namespace dmlif
|
||||
class DMLIF
|
||||
{
|
||||
public:
|
||||
DMLIF(uint32_t sessionid, uint32_t tflg=0, bool dflg=false, bool vflg=false);
|
||||
~DMLIF();
|
||||
DMLIF(uint32_t sessionid, uint32_t tflg = 0, bool dflg = false, bool vflg = false);
|
||||
~DMLIF();
|
||||
|
||||
int sendOne(const std::string& stmt);
|
||||
int sendOne(const std::string& stmt);
|
||||
|
||||
void rf2Start(const std::string& sn);
|
||||
void rf2Add(int64_t okey);
|
||||
int rf2Send();
|
||||
void rf2Start(const std::string& sn);
|
||||
void rf2Add(int64_t okey);
|
||||
int rf2Send();
|
||||
|
||||
protected:
|
||||
int DMLSend(messageqcpp::ByteStream& bytestream, messageqcpp::ByteStream::octbyte& rows);
|
||||
int DMLSend(messageqcpp::ByteStream& bytestream, messageqcpp::ByteStream::octbyte& rows);
|
||||
|
||||
private:
|
||||
//DMLIF(const DMLIF& rhs);
|
||||
//DMLIF& operator=(const DMLIF& rhs);
|
||||
//DMLIF(const DMLIF& rhs);
|
||||
//DMLIF& operator=(const DMLIF& rhs);
|
||||
|
||||
uint32_t fSessionID;
|
||||
uint32_t fTflg;
|
||||
bool fDflg;
|
||||
bool fVflg;
|
||||
uint32_t fSessionID;
|
||||
uint32_t fTflg;
|
||||
bool fDflg;
|
||||
bool fVflg;
|
||||
|
||||
boost::scoped_ptr<messageqcpp::MessageQueueClient> fMqp;
|
||||
boost::scoped_ptr<messageqcpp::MessageQueueClient> fMqp;
|
||||
|
||||
std::string fSchema;
|
||||
std::string fOFilterStr;
|
||||
std::string fLFilterStr;
|
||||
std::string fSchema;
|
||||
std::string fOFilterStr;
|
||||
std::string fLFilterStr;
|
||||
|
||||
execplan::ParseTree* fOPt;
|
||||
execplan::ParseTree* fLPt;
|
||||
execplan::ParseTree* fOPt;
|
||||
execplan::ParseTree* fLPt;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user