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
109 lines
4.7 KiB
C++
109 lines
4.7 KiB
C++
/*************** TabCol H Declares Source Code File (.H) ***************/
|
|
/* Name: TABCOL.H Version 2.8 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 1998-2013 */
|
|
/* */
|
|
/* This file contains the XTAB, COLUMN and XORDER class definitions. */
|
|
/***********************************************************************/
|
|
|
|
/***********************************************************************/
|
|
/* Include required application header files */
|
|
/* block.h is header containing Block global declarations. */
|
|
/***********************************************************************/
|
|
#include "xobject.h"
|
|
|
|
/***********************************************************************/
|
|
/* Definition of class XTAB with all its method functions. */
|
|
/***********************************************************************/
|
|
class DllExport XTAB: public BLOCK { // Table Name-Schema-Srcdef block.
|
|
friend class TDBPRX;
|
|
friend class TDBTBM;
|
|
public:
|
|
// Constructors
|
|
XTAB(LPCSTR name, LPCSTR srcdef = NULL);
|
|
XTAB(PTABLE tp);
|
|
|
|
// Implementation
|
|
PTABLE GetNext(void) {return Next;}
|
|
PTDB GetTo_Tdb(void) {return To_Tdb;}
|
|
LPCSTR GetName(void) {return Name;}
|
|
LPCSTR GetSrc(void) {return Srcdef;}
|
|
LPCSTR GetSchema(void) {return Schema;}
|
|
LPCSTR GetQualifier(void) {return Qualifier;}
|
|
void SetTo_Tdb(PTDB tdbp) {To_Tdb = tdbp;}
|
|
void SetName(LPCSTR name) {Name = name;}
|
|
void SetSrc(LPCSTR srcdef) {Srcdef = srcdef;}
|
|
void SetSchema(LPCSTR schname) {Schema = schname;}
|
|
void SetQualifier(LPCSTR qname) {Qualifier = qname;}
|
|
|
|
// Methods
|
|
PTABLE Link(PTABLE);
|
|
void Print(PGLOBAL g, FILE *f, uint n);
|
|
void Print(PGLOBAL g, char *ps, uint z);
|
|
|
|
protected:
|
|
// Members
|
|
PTABLE Next; // Points to next table in chain
|
|
PTDB To_Tdb; // Points to Table description Block
|
|
LPCSTR Name; // Table name
|
|
LPCSTR Srcdef; // Table Source definition
|
|
LPCSTR Schema; // Schema name
|
|
LPCSTR Qualifier; // Qualifier name
|
|
}; // end of class XTAB
|
|
|
|
|
|
/***********************************************************************/
|
|
/* Definition of class COLUMN with all its method functions. */
|
|
/* Note: because of LNA routines, the constantness of Name was */
|
|
/* removed and constructing a COLUMN with null name was allowed. */
|
|
/* Perhaps this should be replaced by the use of a specific class. */
|
|
/***********************************************************************/
|
|
class DllExport COLUMN: public XOBJECT { // Column Name/Qualifier block.
|
|
public:
|
|
// Constructor
|
|
COLUMN(LPCSTR name);
|
|
|
|
// Implementation
|
|
virtual int GetType(void) {return TYPE_COLUMN;}
|
|
virtual int GetResultType(void) {assert(false); return TYPE_VOID;}
|
|
virtual int GetLength(void) {assert(false); return 0;}
|
|
virtual int GetLengthEx(void) {assert(false); return 0;}
|
|
virtual int GetScale() {assert(false); return 0;};
|
|
LPCSTR GetName(void) {return Name;}
|
|
LPCSTR GetQualifier(void) {return Qualifier;}
|
|
PTABLE GetTo_Table(void) {return To_Table;}
|
|
PCOL GetTo_Col(void) {return To_Col;}
|
|
void SetQualifier(LPCSTR qualif) {Qualifier = qualif;}
|
|
void SetTo_Table(PTABLE tablep) {To_Table = tablep;}
|
|
void SetTo_Col(PCOL colp) {To_Col = colp;}
|
|
|
|
// Methods
|
|
virtual void Print(PGLOBAL g, FILE *f, uint n);
|
|
virtual void Print(PGLOBAL g, char *ps, uint z);
|
|
// All methods below should never be used for COLUMN's
|
|
virtual void Reset(void) {assert(false);}
|
|
virtual bool Compare(PXOB) {assert(false); return false;}
|
|
virtual bool SetFormat(PGLOBAL, FORMAT&);
|
|
virtual bool Eval(PGLOBAL) {assert(false); return true;}
|
|
|
|
private:
|
|
// Members
|
|
PTABLE To_Table; // Point to Table Name Block
|
|
PCOL To_Col; // Points to Column Description Block
|
|
LPCSTR const Name; // Column name
|
|
LPCSTR Qualifier; // Qualifier name
|
|
}; // end of class COLUMN
|
|
|
|
/***********************************************************************/
|
|
/* Definition of class SPCCOL with all its method functions. */
|
|
/* Note: Currently the special columns are ROWID, ROWNUM, FILEID, */
|
|
/* SERVID, TABID, PARTID, and CONID. */
|
|
/***********************************************************************/
|
|
class SPCCOL: public COLUMN { // Special Column Name/Qualifier block.
|
|
public:
|
|
// Constructor
|
|
SPCCOL(LPCSTR name) : COLUMN(name) {}
|
|
|
|
private:
|
|
// Members
|
|
}; // end of class SPCCOL
|