summaryrefslogtreecommitdiff
path: root/storage/connect/reldef.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-04-19 20:35:43 +0200
committerSergei Golubchik <sergii@pisem.net>2013-04-19 20:35:43 +0200
commit6bd49441b53dbd7ed0a9cb53983dbe3cb253a8ed (patch)
tree4f2325633d66c9a7b065480a67bbdc64c7038bff /storage/connect/reldef.h
parent337c1b3ee83033a185daa4e2df8c8a36f54c2bf7 (diff)
downloadmariadb-git-6bd49441b53dbd7ed0a9cb53983dbe3cb253a8ed.tar.gz
CONNECT engine fixes after 10.0 merge.
Adaptation to new API, small simplifications and bug fixes
Diffstat (limited to 'storage/connect/reldef.h')
-rw-r--r--storage/connect/reldef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/connect/reldef.h b/storage/connect/reldef.h
index 15cdb772294..b21488c7ded 100644
--- a/storage/connect/reldef.h
+++ b/storage/connect/reldef.h
@@ -34,6 +34,8 @@ class DllExport RELDEF : public BLOCK { // Relation definition block
PCATLG GetCat(void) {return Cat;}
virtual const char *GetType(void) = 0;
virtual AMT GetDefType(void) = 0;
+ void SetName(const char *str) { Name=(char*)str; }
+ void SetCat(PCATLG cat) { Cat=cat; }
// Methods
virtual bool DeleteTableFile(PGLOBAL g) {return true;}