mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
1904284361
1) Support of partitioning by connect. A table can be partitioned by files, this is an enhanced MULTIPLE table. It can be also partitioned by sub-tables like TBL and this enables table sharding. 2) Handling a CONNECT bug that causes in some cases extraneous rows to remain in the table after an UPDATE or DELETE when the command uses indexing (for not fixed file tables). Until a real fix is done, CONNECT tries to ignore indexing and if it cannot do it abort the command with an error message. - Add tests on partitioning added: storage/connect/mysql-test/connect/r/part_file.result storage/connect/mysql-test/connect/r/part_table.result storage/connect/mysql-test/connect/t/part_file.test storage/connect/mysql-test/connect/t/part_table.test - Temporary fix modified: sql/sql_partition.cc - Add partition support modified: storage/connect/ha_connect.cc storage/connect/ha_connect.h storage/connect/reldef.cpp storage/connect/reldef.h storage/connect/tabdos.cpp - Add functions ha_connect::IsUnique and ha_connect::CheckColumnList modified: storage/connect/ha_connect.cc storage/connect/ha_connect.h - Prevent updating a partition table column that is part of the partition function (outward tables only) modified: storage/connect/ha_connect.cc - Support INSERT/UPDATE/DELETE for PROXY tables modified: storage/connect/tabutil.cpp - Handle the bug on updating rows via indexing. Waiting for a real fix, Don't use indexing when possible else raise an error and abort. modified: storage/connect/ha_connect.cc - dbuserp->UseTemp set to TMP_AUTO modified: storage/connect/connect.cc - Add members nox, abort and only modified: storage/connect/ha_connect.cc storage/connect/ha_connect.h - Add arguments nox and abort to CntCloseTable modified: storage/connect/connect.cc storage/connect/connect.h storage/connect/filamap.cpp storage/connect/filamap.h storage/connect/filamdbf.cpp storage/connect/filamdbf.h storage/connect/filamfix.cpp storage/connect/filamfix.h storage/connect/filamtxt.cpp storage/connect/filamtxt.h storage/connect/filamvct.cpp storage/connect/filamvct.h storage/connect/filamzip.cpp storage/connect/filamzip.h storage/connect/ha_connect.cc - Add arguments abort to CloseTableFile and RenameTempFile modified: storage/connect/filamap.cpp storage/connect/filamap.h storage/connect/filamdbf.cpp storage/connect/filamdbf.h storage/connect/filamfix.cpp storage/connect/filamfix.h storage/connect/filamtxt.cpp storage/connect/filamtxt.h storage/connect/filamvct.cpp storage/connect/filamvct.h storage/connect/filamzip.cpp storage/connect/filamzip.h storage/connect/tabdos.cpp storage/connect/tabdos.h storage/connect/tabvct.cpp storage/connect/xtable.h - Fix info->records when file does not exists modified: storage/connect/connect.cc - Close XML table when opened for info modified: storage/connect/connect.cc - Add function VCTFAM::GetFileLength modified: storage/connect/filamvct.cpp storage/connect/filamvct.h - Column option DISTRIB -> ENUM modified: storage/connect/ha_connect.cc - Options connect, query_string and partname allways available modified: storage/connect/ha_connect.cc - Add function MYSQLC::GetTableSize modified: storage/connect/myconn.cpp storage/connect/myconn.h - Add new special columns (PARTNAME, FNAME, FPATH, FTYPE and FDISK) modified: storage/connect/colblk.cpp storage/connect/colblk.h storage/connect/plgdbsem.h storage/connect/table.cpp - Add function ExtractFromPath modified: storage/connect/colblk.cpp storage/connect/plgdbsem.h storage/connect/plgdbutl.cpp - Enhance Cardinality for some table types modified: storage/connect/tabdos.cpp storage/connect/tabmysql.cpp storage/connect/tabmysql.h storage/connect/tabodbc.cpp storage/connect/tabodbc.h storage/connect/tabsys.cpp storage/connect/tabsys.h storage/connect/xindex.cpp storage/connect/xindex.h storage/connect/xtable.h - Add test on special column modified: storage/connect/tabfmt.cpp - Add new files (added for block indexing) modified: storage/connect/CMakeLists.txt
230 lines
8.6 KiB
C++
230 lines
8.6 KiB
C++
/*************** Colblk H Declares Source Code File (.H) ***************/
|
|
/* Name: COLBLK.H Version 1.7 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 2005-2014 */
|
|
/* */
|
|
/* This file contains the COLBLK and derived classes declares. */
|
|
/***********************************************************************/
|
|
#ifndef __COLBLK__H
|
|
#define __COLBLK__H
|
|
|
|
/***********************************************************************/
|
|
/* Include required application header files */
|
|
/***********************************************************************/
|
|
#include "xobject.h"
|
|
#include "reldef.h"
|
|
|
|
/***********************************************************************/
|
|
/* Class COLBLK: Base class for table column descriptors. */
|
|
/***********************************************************************/
|
|
class DllExport COLBLK : public XOBJECT {
|
|
friend class TDBPIVOT;
|
|
protected:
|
|
// Default constructors used by derived classes
|
|
COLBLK(PCOLDEF cdp = NULL, PTDB tdbp = NULL, int i = 0);
|
|
COLBLK(PCOL colp, PTDB tdbp = NULL); // Used in copy process
|
|
COLBLK(int n) {} // Used when changing a column class in TDBXML
|
|
|
|
public:
|
|
// Implementation
|
|
virtual int GetType(void) {return TYPE_COLBLK;}
|
|
virtual int GetResultType(void) {return Buf_Type;}
|
|
virtual int GetScale(void) {return Format.Prec;}
|
|
virtual int GetPrecision(void) {return Precision;}
|
|
virtual int GetLength(void) {return Long;}
|
|
virtual int GetLengthEx(void);
|
|
virtual int GetAmType() {return TYPE_AM_ERROR;}
|
|
virtual void SetOk(void) {Status |= BUF_EMPTY;}
|
|
virtual PTDB GetTo_Tdb(void) {return To_Tdb;}
|
|
virtual int GetClustered(void) {return 0;}
|
|
virtual int IsClustered(void) {return FALSE;}
|
|
PCOL GetNext(void) {return Next;}
|
|
PSZ GetName(void) {return Name;}
|
|
int GetIndex(void) {return Index;}
|
|
ushort GetColUse(void) {return ColUse;}
|
|
int GetOpt(void) {return Opt;}
|
|
ushort GetColUse(ushort u) {return (ColUse & u);}
|
|
ushort GetStatus(void) {return Status;}
|
|
ushort GetStatus(ushort u) {return (Status & u);}
|
|
void SetColUse(ushort u) {ColUse = u;}
|
|
void SetStatus(ushort u) {Status = u;}
|
|
void AddColUse(ushort u) {ColUse |= u;}
|
|
void AddStatus(ushort u) {Status |= u;}
|
|
void SetNext(PCOL cp) {Next = cp;}
|
|
PXCOL GetKcol(void) {return To_Kcol;}
|
|
void SetKcol(PXCOL kcp) {To_Kcol = kcp;}
|
|
PCOLDEF GetCdp(void) {return Cdp;}
|
|
PSZ GetDomain(void) {return (Cdp) ? Cdp->Decode : NULL;}
|
|
PSZ GetDesc(void) {return (Cdp) ? Cdp->Desc : NULL;}
|
|
PSZ GetFmt(void) {return (Cdp) ? Cdp->Fmt : NULL;}
|
|
bool IsUnsigned(void) {return Unsigned;}
|
|
bool IsVirtual(void) {return Cdp->IsVirtual();}
|
|
bool IsNullable(void) {return Nullable;}
|
|
void SetNullable(bool b) {Nullable = b;}
|
|
|
|
// Methods
|
|
virtual void Reset(void);
|
|
virtual bool Compare(PXOB xp);
|
|
virtual bool SetFormat(PGLOBAL, FORMAT&);
|
|
virtual bool IsSpecial(void) {return false;}
|
|
virtual bool Eval(PGLOBAL g);
|
|
virtual bool SetBuffer(PGLOBAL g, PVAL value, bool ok, bool check);
|
|
virtual void SetTo_Val(PVAL valp) {}
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
virtual void WriteColumn(PGLOBAL g);
|
|
virtual void Print(PGLOBAL g, FILE *, uint);
|
|
virtual void Print(PGLOBAL g, char *, uint);
|
|
virtual bool VarSize(void) {return false;}
|
|
bool InitValue(PGLOBAL g);
|
|
|
|
protected:
|
|
// Members
|
|
PCOL Next; // Next column in table
|
|
PSZ Name; // Column name
|
|
PCOLDEF Cdp; // To column definition block
|
|
PTDB To_Tdb; // Points to Table Descriptor Block
|
|
PXCOL To_Kcol; // Points to Xindex matching column
|
|
bool Nullable; // True if nullable
|
|
bool Unsigned; // True if unsigned
|
|
int Index; // Column number in table
|
|
int Opt; // Cluster/sort information
|
|
int Buf_Type; // Data type
|
|
int Long; // Internal length in table
|
|
int Precision; // Column length (as for ODBC)
|
|
int Freq; // Evaluated ceiling of distinct values
|
|
FORMAT Format; // Output format
|
|
ushort ColUse; // Column usage
|
|
ushort Status; // Column read status
|
|
}; // end of class COLBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class SPCBLK: Base class for special column descriptors. */
|
|
/***********************************************************************/
|
|
class DllExport SPCBLK : public COLBLK {
|
|
public:
|
|
// Constructor
|
|
SPCBLK(PCOLUMN cp);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) = 0;
|
|
virtual bool GetRnm(void) {return false;}
|
|
|
|
// Methods
|
|
virtual bool IsSpecial(void) {return true;}
|
|
virtual void ReadColumn(PGLOBAL g) = 0;
|
|
virtual void WriteColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
SPCBLK(void) : COLBLK(1) {}
|
|
}; // end of class SPCBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class RIDBLK: ROWID special column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport RIDBLK : public SPCBLK {
|
|
public:
|
|
// Constructor
|
|
RIDBLK(PCOLUMN cp, bool rnm);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_ROWID;}
|
|
virtual bool GetRnm(void) {return Rnm;}
|
|
|
|
// Methods
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
bool Rnm; // False for RowID, True for RowNum
|
|
}; // end of class RIDBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class FIDBLK: FILEID special column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport FIDBLK : public SPCBLK {
|
|
public:
|
|
// Constructor
|
|
FIDBLK(PCOLUMN cp, OPVAL op);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_FILID;}
|
|
|
|
// Methods
|
|
virtual void Reset(void) {} // This is a pseudo constant column
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
PSZ Fn; // The current To_File of the table
|
|
OPVAL Op; // The file part operator
|
|
}; // end of class FIDBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class TIDBLK: TABID special column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport TIDBLK : public SPCBLK {
|
|
public:
|
|
// Constructor
|
|
TIDBLK(PCOLUMN cp);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_TABID;}
|
|
|
|
// Methods
|
|
virtual void Reset(void) {} // This is a pseudo constant column
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
TIDBLK(void) {}
|
|
|
|
// Members
|
|
PSZ Tname; // The current table name
|
|
}; // end of class TIDBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class PRTBLK: PARTID special column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport PRTBLK : public SPCBLK {
|
|
public:
|
|
// Constructor
|
|
PRTBLK(PCOLUMN cp);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_PRTID;}
|
|
|
|
// Methods
|
|
virtual void Reset(void) {} // This is a pseudo constant column
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
PRTBLK(void) {}
|
|
|
|
// Members
|
|
PSZ Pname; // The current partition name
|
|
}; // end of class PRTBLK
|
|
|
|
/***********************************************************************/
|
|
/* Class SIDBLK: SERVID special column descriptor. */
|
|
/***********************************************************************/
|
|
class DllExport SIDBLK : public SPCBLK {
|
|
public:
|
|
// Constructor
|
|
SIDBLK(PCOLUMN cp);
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_SRVID;}
|
|
|
|
// Methods
|
|
virtual void Reset(void) {} // This is a pseudo constant column
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
SIDBLK(void) {}
|
|
|
|
// Members
|
|
PSZ Sname; // The current server name
|
|
}; // end of class SIDBLK
|
|
|
|
#endif // __COLBLK__H
|