~jaypipes/drizzle/subscriber-plugin

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

Renamed namespace slot to namespace service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include <drizzled/replication_services.h>
45
45
#include <drizzled/check_stack_overrun.h>
46
46
#include <drizzled/lock.h>
47
 
#include <drizzled/slot/listen.h>
 
47
#include <drizzled/service/listen.h>
48
48
#include <mysys/cached_directory.h>
49
49
 
50
50
using namespace std;
51
51
using namespace drizzled;
52
52
 
53
 
bool drizzle_rm_tmp_tables(slot::Listen &listen_handler);
 
53
bool drizzle_rm_tmp_tables(service::Listen &listen_handler);
54
54
 
55
55
/**
56
56
  @defgroup Data_Dictionary Data Dictionary
4533
4533
}
4534
4534
 
4535
4535
 
4536
 
bool drizzle_rm_tmp_tables(slot::Listen &listen_handler)
 
4536
bool drizzle_rm_tmp_tables(service::Listen &listen_handler)
4537
4537
{
4538
4538
  char  filePath[FN_REFLEN], filePathCopy[FN_REFLEN];
4539
4539
  Session *session;