summaryrefslogtreecommitdiff
path: root/storage/connect/taboccur.h
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2013-05-05 12:45:26 +0200
committerOlivier Bertrand <bertrandop@gmail.com>2013-05-05 12:45:26 +0200
commit495981141118e7b88b75526c494af12888ffcf12 (patch)
tree5fec5d100dcd1fc2e9e83206f3271e8c0b4732a3 /storage/connect/taboccur.h
parent5fc19f8db85af67efac58c3710933aa6c8925e29 (diff)
downloadmariadb-git-495981141118e7b88b75526c494af12888ffcf12.tar.gz
- General code cleaning, eliminating a few potential bugs
modified: storage/connect/catalog.h storage/connect/mycat.cc storage/connect/taboccur.cpp storage/connect/taboccur.h storage/connect/tabutil.cpp storage/connect/tabutil.h storage/connect/tabxcl.cpp storage/connect/tabxcl.h
Diffstat (limited to 'storage/connect/taboccur.h')
-rw-r--r--storage/connect/taboccur.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/storage/connect/taboccur.h b/storage/connect/taboccur.h
index c0077a0b33e..076202be477 100644
--- a/storage/connect/taboccur.h
+++ b/storage/connect/taboccur.h
@@ -9,12 +9,11 @@ typedef class OCCURDEF *POCCURDEF;
typedef class TDBOCCUR *PTDBOCCUR;
typedef class OCCURCOL *POCCURCOL;
typedef class RANKCOL *PRANKCOL;
-typedef class SRTCOL *PSRTCOL;
/* -------------------------- OCCUR classes -------------------------- */
/***********************************************************************/
-/* OCCUR: OEM table that provides a view of a source table where the */
+/* OCCUR: Table that provides a view of a source table where the */
/* contain of several columns of the source table is placed in only */
/* one column, the OCCUR column, this resulting into several rows. */
/***********************************************************************/
@@ -48,7 +47,6 @@ class OCCURDEF : public PRXDEF { /* Logical table description */
class TDBOCCUR : public TDBPRX {
friend class OCCURCOL;
friend class RANKCOL;
- friend class SRTCOL;
public:
// Constructor
TDBOCCUR(POCCURDEF tdp);
@@ -116,7 +114,7 @@ class OCCURCOL : public COLBLK {
class RANKCOL : public COLBLK {
public:
// Constructors
- RANKCOL(PCOLDEF cdp, PTDBOCCUR tdbp, int n) : COLBLK(cdp, tdbp, n) {}
+ RANKCOL(PCOLDEF cdp, PTDBOCCUR tdbp, int n) : COLBLK(cdp, tdbp, n) {}
// Implementation
virtual int GetAmType(void) {return TYPE_AM_OCCUR;}