You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-4815 ColumnCommand was replaced with a set of derived classes specified by
column width RTSCommand was modified to use a fabric that produces CC class based on column width NB this patch doesn't affect PseudoCC that also leverages ColumnCommand
This commit is contained in:
@ -33,10 +33,12 @@
|
||||
|
||||
#include "command.h"
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
#include <memory>
|
||||
|
||||
namespace primitiveprocessor
|
||||
{
|
||||
|
||||
|
||||
class RTSCommand : public Command
|
||||
{
|
||||
public:
|
||||
@ -76,7 +78,7 @@ public:
|
||||
private:
|
||||
RTSCommand(const RTSCommand&);
|
||||
|
||||
ColumnCommand col;
|
||||
ColumnCommandUniquePtr col;
|
||||
DictStep dict;
|
||||
uint8_t passThru;
|
||||
bool absNull;
|
||||
|
Reference in New Issue
Block a user