~ubuntu-branches/ubuntu/gutsy/mysql-dfsg-5.0/gutsy

« back to all changes in this revision

Viewing changes to ndb/src/mgmclient/CommandInterpreter.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-03 09:43:01 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070403094301-fnjhfr59hu72pvtg
Tags: 5.0.38-0ubuntu1
* Package the Enterprise version again (.37 was a community version), since
  Debian and we have always done so. This brings in a few more bug fixes and
  makes functional derivations less likely.
* debian/README.Maintainer: Add pointer to upstream download URL, since it
  is very hard to find the Enterprise versions.
* Disable 33_scripts__mysql_create_system_tables__no_test.dpatch, since that
  script was removed upstream.
* debian/patches/41_scripts__mysql_install_db.sh__no_test.dpatch: Adapted to
  changed formatting in new upstream version.
* Remove debian/patches/86_PATH_MAX.dpatch, fixed upstream.
* Add debian/patches/90_org_tables_definition.dpatch: Fix local variable
  declaration in libmysqld/sql_parse.cc to fix compilation with
  EMBEDDED_LIBRARY.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1549
1549
    return -1;
1550
1550
  }
1551
1551
 
1552
 
  int i;
1553
1552
  char *str;
1554
1553
  
1555
1554
  if (ndb_mgm_purge_stale_sessions(m_mgmsrv, &str)) {
1667
1666
{
1668
1667
  BaseString *basestring = NULL;
1669
1668
 
1670
 
  int retval;
1671
1669
  disconnect();
1672
1670
  if (!emptyString(parameters)) {
1673
1671
    basestring= new BaseString(parameters);
2102
2100
 
2103
2101
  ndb_mgm_node_status status;
2104
2102
  Uint32 startPhase, version;
2105
 
  bool system;
2106
2103
  
2107
2104
  struct ndb_mgm_cluster_state *cl;
2108
2105
  cl = ndb_mgm_get_status(m_mgmsrv);