mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
3e36eb230b
modified: storage/connect/array.cpp modified: storage/connect/array.h modified: storage/connect/blkfil.cpp modified: storage/connect/blkfil.h modified: storage/connect/block.h modified: storage/connect/colblk.cpp modified: storage/connect/colblk.h modified: storage/connect/csort.h modified: storage/connect/filamvct.cpp modified: storage/connect/filter.cpp modified: storage/connect/filter.h modified: storage/connect/global.h modified: storage/connect/json.h modified: storage/connect/plgdbsem.h modified: storage/connect/plgdbutl.cpp modified: storage/connect/tabcol.cpp modified: storage/connect/tabcol.h modified: storage/connect/tabdos.cpp modified: storage/connect/tabdos.h modified: storage/connect/tabjson.cpp modified: storage/connect/table.cpp modified: storage/connect/tabodbc.cpp modified: storage/connect/tabodbc.h modified: storage/connect/tabsys.h modified: storage/connect/tabxml.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.cpp modified: storage/connect/xobject.h modified: storage/connect/xtable.h Set values as nullable when retrieving catalog info modified: storage/connect/jdbconn.cpp modified: storage/connect/mysql-test/connect/r/odbc_oracle.result modified: storage/connect/odbconn.cpp Change format of Jpath modified: storage/connect/json.cpp modified: storage/connect/jsonudf.cpp modified: storage/connect/mysql-test/connect/r/json.result modified: storage/connect/mysql-test/connect/r/json_udf.result modified: storage/connect/mysql-test/connect/r/json_udf_bin.result modified: storage/connect/mysql-test/connect/r/zip.result modified: storage/connect/mysql-test/connect/t/json.test modified: storage/connect/mysql-test/connect/t/json_udf.test modified: storage/connect/mysql-test/connect/t/json_udf_bin.test modified: storage/connect/mysql-test/connect/t/zip.test modified: storage/connect/tabjson.cpp modified: storage/connect/tabjson.h modified: storage/connect/tabmgo.cpp Change null representation from ??? to <null> modified: storage/connect/json.cpp Change the name of UDF that are equal to a native JSON function name modified: storage/connect/jsonudf.cpp modified: storage/connect/jsonudf.h modified: storage/connect/mysql-test/connect/t/json_udf.inc modified: storage/connect/mysql-test/connect/t/json_udf2.inc Fix bug in making JSON project info modified: storage/connect/mongofam.cpp Fix COMPUTE when one argument is null modified: storage/connect/value.cpp Value is null only when nullable modified: storage/connect/value.h
115 lines
4.2 KiB
C++
115 lines
4.2 KiB
C++
/*************** TabDos H Declares Source Code File (.H) ***************/
|
|
/* Name: TABFIX.H Version 2.4 */
|
|
/* */
|
|
/* (C) Copyright to the author Olivier BERTRAND 1999-2015 */
|
|
/* */
|
|
/* This file contains the TDBFIX and (FIX/BIN)COL classes declares. */
|
|
/***********************************************************************/
|
|
#ifndef __TABFIX__
|
|
#define __TABFIX__
|
|
#include "tabdos.h" /* Base class declares */
|
|
#include "filamdbf.h"
|
|
|
|
typedef class FIXCOL *PFIXCOL;
|
|
typedef class BINCOL *PBINCOL;
|
|
typedef class TXTFAM *PTXF;
|
|
|
|
/***********************************************************************/
|
|
/* This is the DOS/UNIX Access Method class declaration for files */
|
|
/* that are standard files with columns starting at fixed offset. */
|
|
/* This class is for fixed formatted files. */
|
|
/***********************************************************************/
|
|
class DllExport TDBFIX : public TDBDOS {
|
|
friend class FIXCOL;
|
|
friend class BINCOL;
|
|
public:
|
|
// Constructor
|
|
TDBFIX(PDOSDEF tdp, PTXF txfp);
|
|
TDBFIX(PGLOBAL g, PTDBFIX tdbp);
|
|
|
|
// Implementation
|
|
virtual AMT GetAmType(void) {return TYPE_AM_FIX;}
|
|
virtual void RestoreNrec(void);
|
|
virtual PTDB Duplicate(PGLOBAL g)
|
|
{return (PTDB)new(g) TDBFIX(g, this);}
|
|
|
|
// Methods
|
|
virtual PTDB Clone(PTABS t);
|
|
virtual void ResetDB(void);
|
|
virtual bool IsUsingTemp(PGLOBAL g);
|
|
virtual int RowNumber(PGLOBAL g, bool b = false);
|
|
virtual int ResetTableOpt(PGLOBAL g, bool dop, bool dox);
|
|
virtual void ResetSize(void);
|
|
virtual int GetBadLines(void) {return Txfp->GetNerr();}
|
|
|
|
// Database routines
|
|
virtual PCOL MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n);
|
|
virtual int GetProgMax(PGLOBAL g);
|
|
virtual int Cardinality(PGLOBAL g);
|
|
virtual int GetMaxSize(PGLOBAL g);
|
|
virtual bool OpenDB(PGLOBAL g);
|
|
virtual int WriteDB(PGLOBAL g);
|
|
|
|
protected:
|
|
virtual bool PrepareWriting(PGLOBAL g) {return false;}
|
|
|
|
// Members
|
|
char Teds; /* Binary table default endian setting */
|
|
}; // end of class TDBFIX
|
|
|
|
/***********************************************************************/
|
|
/* Class BINCOL: BIN access method column descriptor. */
|
|
/* This A.M. is used for file processed by blocks. */
|
|
/***********************************************************************/
|
|
class DllExport BINCOL : public DOSCOL {
|
|
friend class TDBFIX;
|
|
public:
|
|
// Constructors
|
|
BINCOL(PGLOBAL g, PCOLDEF cdp, PTDB tp, PCOL cp, int i, PCSZ am = "BIN");
|
|
BINCOL(BINCOL *colp, PTDB tdbp); // Constructor used in copy process
|
|
|
|
// Implementation
|
|
virtual int GetAmType(void) {return TYPE_AM_BIN;}
|
|
int GetDeplac(void) {return Deplac;}
|
|
int GetFileSize(void)
|
|
{return N ? N : GetTypeSize(Buf_Type, Long);}
|
|
|
|
// Methods
|
|
virtual void ReadColumn(PGLOBAL g);
|
|
virtual void WriteColumn(PGLOBAL g);
|
|
|
|
// Static
|
|
static void SetEndian(void);
|
|
|
|
protected:
|
|
BINCOL(void) {} // Default constructor not to be used
|
|
|
|
// Members
|
|
static char Endian; // The host endian setting (L or B)
|
|
char *Buff; // Utility buffer
|
|
char Eds; // The file endian setting
|
|
char Fmt; // The converted value format
|
|
int N; // The number of bytes in the file
|
|
int M; // The buffer type size
|
|
int Lim; // Min(N,M)
|
|
}; // end of class BINCOL
|
|
|
|
/***********************************************************************/
|
|
/* This is the class declaration for the DBF columns catalog table. */
|
|
/***********************************************************************/
|
|
class TDBDCL : public TDBCAT {
|
|
public:
|
|
// Constructor
|
|
TDBDCL(PDOSDEF tdp) : TDBCAT(tdp) {Fn = tdp->GetFn();}
|
|
|
|
protected:
|
|
// Specific routines
|
|
virtual PQRYRES GetResult(PGLOBAL g)
|
|
{return DBFColumns(g, ((PTABDEF)To_Def)->GetPath(), Fn, false);}
|
|
|
|
// Members
|
|
PCSZ Fn; // The DBF file (path) name
|
|
}; // end of class TDBOCL
|
|
|
|
|
|
#endif // __TABFIX__
|