summaryrefslogtreecommitdiff
path: root/storage/connect/colblk.cpp
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2015-06-05 16:10:50 +0200
committerOlivier Bertrand <bertrandop@gmail.com>2015-06-05 16:10:50 +0200
commit88998cfaac83e2267f427c551c1f350fa1a505be (patch)
treee21fe97611b862b149039f611bdb79009a78f70d /storage/connect/colblk.cpp
parenta8b7b6c85b4817adafbd5258151f1ff21e7ac8ff (diff)
downloadmariadb-git-88998cfaac83e2267f427c551c1f350fa1a505be.tar.gz
Commit merge resolved files
Diffstat (limited to 'storage/connect/colblk.cpp')
-rw-r--r--storage/connect/colblk.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/storage/connect/colblk.cpp b/storage/connect/colblk.cpp
index 3b206f0743a..80b405be041 100644
--- a/storage/connect/colblk.cpp
+++ b/storage/connect/colblk.cpp
@@ -1,11 +1,7 @@
/************* Colblk C++ Functions Source Code File (.CPP) ************/
/* Name: COLBLK.CPP Version 2.1 */
/* */
-<<<<<<< HEAD
/* (C) Copyright to the author Olivier BERTRAND 1998-2015 */
-=======
-/* (C) Copyright to the author Olivier BERTRAND 1998-2014 */
->>>>>>> MariaDB/10.0
/* */
/* This file contains the COLBLK class functions. */
/***********************************************************************/
@@ -115,11 +111,7 @@ bool COLBLK::Compare(PXOB xp)
/***********************************************************************/
/* SetFormat: function used to set SELECT output format. */
/***********************************************************************/
-<<<<<<< HEAD
bool COLBLK::SetFormat(PGLOBAL, FORMAT& fmt)
-=======
-bool COLBLK::SetFormat(PGLOBAL g, FORMAT& fmt)
->>>>>>> MariaDB/10.0
{
fmt = Format;
@@ -183,11 +175,7 @@ bool COLBLK::InitValue(PGLOBAL g)
/***********************************************************************/
/* SetBuffer: prepare a column block for write operation. */
/***********************************************************************/
-<<<<<<< HEAD
bool COLBLK::SetBuffer(PGLOBAL g, PVAL, bool, bool)
-=======
-bool COLBLK::SetBuffer(PGLOBAL g, PVAL value, bool ok, bool check)
->>>>>>> MariaDB/10.0
{
sprintf(g->Message, MSG(UNDEFINED_AM), "SetBuffer");
return true;
@@ -226,11 +214,7 @@ void COLBLK::WriteColumn(PGLOBAL g)
/***********************************************************************/
/* Make file output of a column descriptor block. */
/***********************************************************************/
-<<<<<<< HEAD
void COLBLK::Print(PGLOBAL, FILE *f, uint n)
-=======
-void COLBLK::Print(PGLOBAL g, FILE *f, uint n)
->>>>>>> MariaDB/10.0
{
char m[64];
int i;
@@ -253,11 +237,7 @@ void COLBLK::Print(PGLOBAL g, FILE *f, uint n)
/***********************************************************************/
/* Make string output of a column descriptor block. */
/***********************************************************************/
-<<<<<<< HEAD
void COLBLK::Print(PGLOBAL, char *ps, uint)
-=======
-void COLBLK::Print(PGLOBAL g, char *ps, uint z)
->>>>>>> MariaDB/10.0
{
sprintf(ps, "R%d.%s", To_Tdb->GetTdb_No(), Name);
} // end of Print
@@ -317,15 +297,9 @@ FIDBLK::FIDBLK(PCOLUMN cp, OPVAL op) : SPCBLK(cp), Op(op)
Buf_Type = TYPE_STRING;
*Format.Type = 'C';
Format.Length = Long;
-<<<<<<< HEAD
#if defined(__WIN__)
Format.Prec = 1; // Case insensitive
#endif // __WIN__
-=======
-#if defined(WIN32)
- Format.Prec = 1; // Case insensitive
-#endif // WIN32
->>>>>>> MariaDB/10.0
Constant = (!((PTDBASE)To_Tdb)->GetDef()->GetMultiple() &&
To_Tdb->GetAmType() != TYPE_AM_PLG &&
To_Tdb->GetAmType() != TYPE_AM_PLM);
@@ -373,11 +347,7 @@ TIDBLK::TIDBLK(PCOLUMN cp) : SPCBLK(cp)
/***********************************************************************/
/* ReadColumn: what this routine does is to return the table ID. */
/***********************************************************************/
-<<<<<<< HEAD
void TIDBLK::ReadColumn(PGLOBAL)
-=======
-void TIDBLK::ReadColumn(PGLOBAL g)
->>>>>>> MariaDB/10.0
{
if (Tname == NULL) {
Tname = (char*)To_Tdb->GetName();
@@ -436,11 +406,7 @@ SIDBLK::SIDBLK(PCOLUMN cp) : SPCBLK(cp)
/***********************************************************************/
/* ReadColumn: what this routine does is to return the server ID. */
/***********************************************************************/
-<<<<<<< HEAD
void SIDBLK::ReadColumn(PGLOBAL)
-=======
-void SIDBLK::ReadColumn(PGLOBAL g)
->>>>>>> MariaDB/10.0
{
//if (Sname == NULL) {
Sname = (char*)To_Tdb->GetServer();