mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
f5d0c77062
modified: storage/connect/array.cpp modified: storage/connect/blkfil.cpp modified: storage/connect/block.h modified: storage/connect/catalog.h modified: storage/connect/colblk.cpp modified: storage/connect/colblk.h modified: storage/connect/connect.cc modified: storage/connect/filamap.cpp modified: storage/connect/filamdbf.cpp modified: storage/connect/filamfix.cpp modified: storage/connect/filamtxt.cpp modified: storage/connect/filamtxt.h modified: storage/connect/filamvct.cpp modified: storage/connect/filamzip.cpp modified: storage/connect/filter.h modified: storage/connect/ha_connect.c modified: storage/connect/jsonudf.cpp modified: storage/connect/mycat.h modified: storage/connect/myconn.cpp modified: storage/connect/plgdbutl.cpp modified: storage/connect/reldef.cpp modified: storage/connect/reldef.h modified: storage/connect/tabcol.cpp modified: storage/connect/tabdos.cpp modified: storage/connect/tabdos.h modified: storage/connect/tabfix.cpp modified: storage/connect/tabfmt.cpp modified: storage/connect/tabfmt.h modified: storage/connect/tabjson.cpp modified: storage/connect/tabjson.h modified: storage/connect/table.cpp modified: storage/connect/tabmul.cpp modified: storage/connect/tabmysql.cpp modified: storage/connect/tabmysql.h modified: storage/connect/taboccur.cpp modified: storage/connect/tabpivot.cpp modified: storage/connect/tabsys.cpp modified: storage/connect/tabtbl.cpp modified: storage/connect/tabtbl.h modified: storage/connect/tabutil.cpp modified: storage/connect/tabutil.h modified: storage/connect/tabvct.cpp modified: storage/connect/tabvir.cpp modified: storage/connect/tabvir.h modified: storage/connect/tabxcl.cpp modified: storage/connect/tabxcl.h modified: storage/connect/tabxml.cpp modified: storage/connect/tabxml.h modified: storage/connect/valblk.cpp modified: storage/connect/valblk.h modified: storage/connect/value.cpp modified: storage/connect/value.h modified: storage/connect/xindex.cpp modified: storage/connect/xindex.h modified: storage/connect/xobject.h modified: storage/connect/xtable.h
110 lines
3.8 KiB
C++
110 lines
3.8 KiB
C++
/**************** tdbvir H Declares Source Code File (.H) **************/
|
|
/* Name: TDBVIR.H Version 1.1 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 2006-2014 */
|
|
/* */
|
|
/* This file contains the VIR classes declare code. */
|
|
/***********************************************************************/
|
|
typedef class VIRDEF *PVIRDEF;
|
|
typedef class TDBVIR *PTDBVIR;
|
|
|
|
/***********************************************************************/
|
|
/* Return the unique column definition to MariaDB. */
|
|
/***********************************************************************/
|
|
PQRYRES VirColumns(PGLOBAL g, bool info);
|
|
|
|
/* --------------------------- VIR classes --------------------------- */
|
|
|
|
/***********************************************************************/
|
|
/* VIR: Virtual table used to select constant values. */
|
|
/***********************************************************************/
|
|
class DllExport VIRDEF : public TABDEF { /* Logical table description */
|
|
public:
|
|
// Constructor
|
|
VIRDEF(void) {}
|
|
|
|
// Implementation
|
|
virtual const char *GetType(void) {return "VIRTUAL";}
|
|
|
|
// Methods
|
|
virtual bool DefineAM(PGLOBAL, LPCSTR, int) {Pseudo = 3; return false;}
|
|
virtual int Indexable(void) {return 3;}
|
|
virtual PTDB GetTable(PGLOBAL g, MODE m);
|
|
|
|
protected:
|
|
// Members
|
|
}; // end of VIRDEF
|
|
|
|
/***********************************************************************/
|
|
/* This is the class declaration for the Virtual table. */
|
|
/***********************************************************************/
|
|
class DllExport TDBVIR : public TDBASE {
|
|
public:
|
|
// Constructors
|
|
TDBVIR(PVIRDEF tdp);
|
|
|
|
// Implementation
|
|
virtual AMT GetAmType(void) {return TYPE_AM_VIR;}
|
|
|
|
// Methods
|
|
virtual int GetRecpos(void) {return N;}
|
|
virtual bool SetRecpos(PGLOBAL g, int recpos)
|
|
{N = recpos - 2; return false;}
|
|
virtual int RowNumber(PGLOBAL g, bool b = false) {return N + 1;}
|
|
int TestFilter(PFIL filp, bool nop);
|
|
|
|
// Database routines
|
|
virtual PCOL MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n);
|
|
virtual int Cardinality(PGLOBAL g) {return (g) ? Size : 1;}
|
|
virtual int GetMaxSize(PGLOBAL g) {return Size;}
|
|
virtual bool OpenDB(PGLOBAL g);
|
|
virtual int ReadDB(PGLOBAL g);
|
|
virtual int WriteDB(PGLOBAL g);
|
|
virtual int DeleteDB(PGLOBAL g, int irc);
|
|
virtual void CloseDB(PGLOBAL g) {}
|
|
|
|
protected:
|
|
// Members
|
|
int Size; // Table size
|
|
int N; // The VIR table current position
|
|
}; // end of class TDBVIR
|
|
|
|
/***********************************************************************/
|
|
/* Class VIRCOL: VIRTUAL access method column descriptor. */
|
|
/***********************************************************************/
|
|
class VIRCOL : public COLBLK {
|
|
friend class TDBVIR;
|
|
public:
|
|
// Constructors
|
|
VIRCOL(PCOLDEF cdp, PTDB tdbp, PCOL cprec, int i, PSZ am = "VIRTUAL");
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_VIR;}
|
|
|
|
// Methods
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
|
|
protected:
|
|
// Default constructor not to be used
|
|
VIRCOL(void) {}
|
|
|
|
// No additional members
|
|
}; // end of class VIRCOL
|
|
|
|
/***********************************************************************/
|
|
/* This is the class declaration for the VIR column catalog table. */
|
|
/***********************************************************************/
|
|
class TDBVICL : public TDBCAT {
|
|
public:
|
|
// Constructor
|
|
TDBVICL(PVIRDEF tdp) : TDBCAT(tdp) {}
|
|
|
|
// Methods
|
|
virtual int Cardinality(PGLOBAL g) {return 2;} // Avoid DBUG_ASSERT
|
|
|
|
protected:
|
|
// Specific routines
|
|
virtual PQRYRES GetResult(PGLOBAL g);
|
|
|
|
// Members
|
|
}; // end of class TDBVICL
|