~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/tables.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
 
21
#include "config.h"
 
22
 
21
23
#include "plugin/data_engine/schemas.h"
22
24
#include "drizzled/session.h"
23
25
 
24
 
extern size_t build_table_filename(char *buff, size_t bufflen, const char *db, const char *table_name, bool is_tmp);
 
26
namespace drizzled
 
27
{
 
28
extern size_t build_table_filename(char *buff,
 
29
                                   size_t bufflen,
 
30
                                   const char *db,
 
31
                                   const char *table_name,
 
32
                                   bool is_tmp);
 
33
}
25
34
 
26
35
using namespace std;
27
36
using namespace drizzled;