summaryrefslogtreecommitdiff
path: root/storage/connect/tabcol.h
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2013-05-02 16:33:15 +0200
committerOlivier Bertrand <bertrandop@gmail.com>2013-05-02 16:33:15 +0200
commitf3e944099e1d7369bbf84e0b1087b45506279034 (patch)
treef074e2938194c8fe5480df4a0e36aad42bda764d /storage/connect/tabcol.h
parent3d4adc3fdfa1238efb9cd1b6335a397527c24da2 (diff)
downloadmariadb-git-f3e944099e1d7369bbf84e0b1087b45506279034.tar.gz
- Adding a loop test to prevent PROXY based table to loop when repointing on itself.
- Fix bug causing PROXY on non CONNECT tables to sometimes use the wrong DB. - Making some more tests in create that were in pre_create not called anymore when columns are defined. - Updating some test results to reflect new warnings. modified: storage/connect/ha_connect.cc storage/connect/mysql-test/connect/r/tbl.result storage/connect/mysql-test/connect/r/upd.result storage/connect/tabcol.h storage/connect/tabmysql.cpp storage/connect/taboccur.cpp storage/connect/taboccur.h storage/connect/tabtbl.cpp storage/connect/tabtbl.h storage/connect/tabutil.cpp storage/connect/tabutil.h storage/connect/tabxcl.cpp storage/connect/tabxcl.h
Diffstat (limited to 'storage/connect/tabcol.h')
-rw-r--r--storage/connect/tabcol.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/connect/tabcol.h b/storage/connect/tabcol.h
index 5cc2050f872..8c21fe6d1b2 100644
--- a/storage/connect/tabcol.h
+++ b/storage/connect/tabcol.h
@@ -15,7 +15,8 @@
/***********************************************************************/
/* Definition of class XTAB with all its method functions. */
/***********************************************************************/
- class DllExport XTAB: public BLOCK { // Table Name-Owner-Correl block.
+class DllExport XTAB: public BLOCK { // Table Name-Owner-Correl block.
+ friend class TDBPRX;
public:
// Constructors
XTAB(LPCSTR name, LPCSTR correl = NULL);