mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +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
76 lines
3.6 KiB
C++
76 lines
3.6 KiB
C++
/* Copyright (C) Olivier Bertrand 2004 - 2011
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
/**************** Cnt H Declares Source Code File (.H) *****************/
|
|
/* Name: CONNECT.H Version 2.4 */
|
|
/* This file contains the some based classes declares. */
|
|
/***********************************************************************/
|
|
#include "filamtxt.h"
|
|
#include "tabdos.h"
|
|
|
|
//typedef struct _tabdesc *PTABD; // For friend setting
|
|
typedef struct _xinfo *PXF;
|
|
typedef struct _create_xinfo *PCXF;
|
|
typedef class ha_connect *PHC;
|
|
typedef class TDBDOX *PTDBDOX;
|
|
|
|
/****************************************************************************/
|
|
/* CONNECT functions called externally. */
|
|
/****************************************************************************/
|
|
bool CntCheckDB(PGLOBAL g, PHC handler, const char *pathname);
|
|
PTDB CntGetTDB(PGLOBAL g, const char *name, MODE xmod, PHC);
|
|
bool CntOpenTable(PGLOBAL g, PTDB tdbp, MODE, char *, char *, bool, PHC);
|
|
bool CntRewindTable(PGLOBAL g, PTDB tdbp);
|
|
int CntCloseTable(PGLOBAL g, PTDB tdbp, bool nox, bool abort);
|
|
int CntIndexInit(PGLOBAL g, PTDB tdbp, int id);
|
|
RCODE CntReadNext(PGLOBAL g, PTDB tdbp);
|
|
RCODE CntIndexRead(PGLOBAL g, PTDB, OPVAL op, const void *k, int n, bool mrr);
|
|
RCODE CntWriteRow(PGLOBAL g, PTDB tdbp);
|
|
RCODE CntUpdateRow(PGLOBAL g, PTDB tdbp);
|
|
RCODE CntDeleteRow(PGLOBAL g, PTDB tdbp, bool all);
|
|
bool CntInfo(PGLOBAL g, PTDB tdbp, PXF info);
|
|
int CntIndexRange(PGLOBAL g, PTDB ptdb, const uchar* *key, uint *len,
|
|
bool *incl, key_part_map *kmap);
|
|
PGLOBAL CntExit(PGLOBAL g);
|
|
|
|
/***********************************************************************/
|
|
/* Definition of classes XKPDEF, DOXDEF, TDBDOX */
|
|
/* These classes purpose is chiefly to access protected items! */
|
|
/***********************************************************************/
|
|
class DOXDEF: public DOSDEF {
|
|
friend int CntIndexInit(PGLOBAL, PTDB, int);
|
|
}; // end of class DOXDEF
|
|
|
|
/***********************************************************************/
|
|
/* This is the DOS/UNIX Access Method base class declaration. */
|
|
/***********************************************************************/
|
|
class TDBDOX: public TDBDOS {
|
|
friend int MakeIndex(PGLOBAL, PTDB, PIXDEF);
|
|
friend int CntCloseTable(PGLOBAL, PTDB, bool, bool);
|
|
friend int CntIndexInit(PGLOBAL, PTDB, int);
|
|
friend RCODE CntIndexRead(PGLOBAL, PTDB, OPVAL, const void*, int, bool);
|
|
friend RCODE CntDeleteRow(PGLOBAL, PTDB, bool);
|
|
friend int CntIndexRange(PGLOBAL, PTDB, const uchar**, uint*,
|
|
bool*, key_part_map*);
|
|
friend class ha_connect;
|
|
}; // end of class TDBDOX
|
|
|
|
class XKPDEF: public KPARTDEF {
|
|
friend class TDBDOX;
|
|
friend class ha_connect;
|
|
friend int CntIndexInit(PGLOBAL, PTDB, int);
|
|
public:
|
|
XKPDEF(const char *name, int n) : KPARTDEF((PSZ)name, n) {}
|
|
}; // end of class XKPDEF
|