mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
ndb - bug#17761 blob tables patch 3b [closes the bug]
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp: oops (but did not affect previous patch) storage/ndb/include/ndbapi/NdbDictionary.hpp: allow NDB API programs direct access to blob tables via main table or by name (hack) storage/ndb/src/ndbapi/NdbDictionary.cpp: allow NDB API programs direct access to blob tables via main table or by name (hack) storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp: allow NDB API programs direct access to blob tables via main table or by name (hack) storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp: allow NDB API programs direct access to blob tables via main table or by name (hack) storage/ndb/src/ndbapi/ndberror.c: allow NDB API programs direct access to blob tables via main table or by name (hack)
This commit is contained in:
parent
572f03cb51
commit
5cfc63f896
6 changed files with 95 additions and 16 deletions
|
|
@ -1602,6 +1602,12 @@ public:
|
|||
const Table * getTable(const char * name) const;
|
||||
|
||||
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
|
||||
/**
|
||||
* Given main table, get blob table.
|
||||
*/
|
||||
const Table * getBlobTable(const Table *, const char * col_name);
|
||||
const Table * getBlobTable(const Table *, Uint32 col_no);
|
||||
|
||||
/*
|
||||
* Save a table definition in dictionary cache
|
||||
* @param table Object to put into cache
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue