~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/parameters_ms.cc

  • Committer: Lee Bieber
  • Date: 2010-11-08 00:56:57 UTC
  • mfrom: (1911.1.4 build)
  • Revision ID: kalebral@gmail.com-20101108005657-tvx0sxjyx29ldrh7
Merge Stewart - Fix bug 616466: auto_increment and PBMS problem - adds test case for this, can no longer reproduce the problem
Merge Stewart - fix bug 621755: blitzdb dictionary not updated after alter table
Merge Stewart - fix bug 668880: remove use of exit in archive storage engine
Merge Gustaf - replace macros functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
#endif
65
65
 
66
66
 
67
 
static int my_port_number = PBMS_PORT;
 
67
uint32_t pbms_port_number = PBMS_PORT;
68
68
 
69
69
static char             *my_repository_threshold = NULL;
70
70
static char             *my_temp_log_threshold = NULL;
123
123
#endif
124
124
 
125
125
//--------------
126
 
uint32_t PBMSParameters::getPortNumber(){ return my_port_number;}
 
126
uint32_t PBMSParameters::getPortNumber(){ return pbms_port_number;}
127
127
 
128
128
//--------------
129
129
uint32_t PBMSParameters::getServerID(){ return my_server_id;}
487
487
 
488
488
//-----------------
489
489
//-----------------
490
 
static MYSQL_SYSVAR_INT(port, my_port_number,
491
 
        PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_READONLY,
 
490
static MYSQL_SYSVAR_UINT(port, pbms_port_number,
 
491
        PLUGIN_VAR_READONLY,
492
492
        "The port for the server stream-based communications.",
493
493
        NULL, NULL, PBMS_PORT, 0, 64*1024, 1);
494
494