~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/my_print_defaults.cc

This patch adds the following functionality:

* Removes the need to manually enable replicators in order
  for an applier to work.
* Removes the enabled/disabled setting of both transaction
  applier plugins and transaction replicator plugins
* Pairs a replicator with an applier into a "ReplicationStream"
  and removes all checks for "enabled" replicators and appliers
* Allows modules that implement a TransactionApplier (such as
  the transaction_log module) to specify which replicator to
  use via a configuration variable.  For instance, the transaction
  log module now has --transaction-log-use-replicator=[default|filtered..]
  instead of the user having to do --default-replicator-enable and such
* Adds a new data dictionary table for REPLICATION_STREAMS, which
  allows querying of activated replication-to-applier streams
  managed by drizzled::ReplicationServices

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "config.h"
24
24
#include "drizzled/internal/my_sys.h"
25
25
#include "drizzled/internal/m_string.h"
26
 
#include "drizzled/option.h"
 
26
#include "drizzled/my_getopt.h"
27
27
 
28
28
#include <stdio.h>
29
29
 
32
32
const char *config_file="drizzle";              /* Default config file */
33
33
uint32_t verbose= 0, opt_defaults_file_used= 0;
34
34
 
35
 
static struct option my_long_options[] =
 
35
static struct my_option my_long_options[] =
36
36
{
37
37
  /*
38
38
    NB: --config-file is troublesome, because get_defaults_options() doesn't
92
92
  printf("\nExample usage:\n%s --defaults-file=example.cnf client mysql\n", internal::my_progname);
93
93
}
94
94
 
95
 
static int get_one_option(int optid, const struct option *, char *)
 
95
static int get_one_option(int optid, const struct my_option *, char *)
96
96
{
97
97
  switch (optid) {
98
98
    case 'c':