~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

merge Andrew's fix for bug #313410
Files created with drizzledump can now be imported into drizzle without error!

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
   (char**) &opt_delete_master_logs, (char**) &opt_delete_master_logs, 0,
226
226
   GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
227
227
  {"disable-keys", 'K',
228
 
   "'/*!40000 ALTER TABLE tb_name DISABLE KEYS */; and '/*!40000 ALTER TABLE tb_name ENABLE KEYS */; will be put in the output.", (char**) &opt_disable_keys,
 
228
   "'ALTER TABLE tb_name DISABLE KEYS; and 'ALTER TABLE tb_name ENABLE KEYS; will be put in the output.", (char**) &opt_disable_keys,
229
229
   (char**) &opt_disable_keys, 0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
230
230
  {"dump-slave", OPT_DRIZZLEDUMP_SLAVE_DATA,
231
231
   "This causes the binary log position and filename of the master to be "
328
328
   (char**) &opt_autocommit, (char**) &opt_autocommit, 0, GET_BOOL, NO_ARG,
329
329
   0, 0, 0, 0, 0, 0},
330
330
  {"no-create-db", 'n',
331
 
   "'CREATE DATABASE /*!32312 IF NOT EXISTS*/ db_name;' will not be put in the output. The above line will be added otherwise, if --databases or --all-databases option was given.}.",
 
331
   "'CREATE DATABASE IF NOT EXISTS db_name;' will not be put in the output. The above line will be added otherwise, if --databases or --all-databases option was given.}.",
332
332
   (char**) &opt_create_db, (char**) &opt_create_db, 0, GET_BOOL, NO_ARG, 0, 0,
333
333
   0, 0, 0, 0},
334
334
  {"no-create-info", 't', "Don't write table creation info.",
461
461
static void check_io(FILE *file)
462
462
{
463
463
  if (ferror(file))
464
 
    die(EX_EOF, "Got errno %d on write", errno);
 
464
    die(EX_EOF, _("Got errno %d on write"), errno);
465
465
}
466
466
 
467
467
static void print_version(void)
468
468
{
469
 
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname,DUMP_VERSION,
 
469
  printf(_("%s  Ver %s Distrib %s, for %s (%s)\n"),my_progname,DUMP_VERSION,
470
470
         drizzle_get_client_info(),SYSTEM_TYPE,MACHINE_TYPE);
471
471
} /* print_version */
472
472
 
473
473
 
474
474
static void short_usage_sub(void)
475
475
{
476
 
  printf("Usage: %s [OPTIONS] database [tables]\n", my_progname);
477
 
  printf("OR     %s [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]\n",
 
476
  printf(_("Usage: %s [OPTIONS] database [tables]\n"), my_progname);
 
477
  printf(_("OR     %s [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]\n"),
478
478
         my_progname);
479
 
  printf("OR     %s [OPTIONS] --all-databases [OPTIONS]\n", my_progname);
 
479
  printf(_("OR     %s [OPTIONS] --all-databases [OPTIONS]\n"), my_progname);
480
480
}
481
481
 
482
482
 
483
483
static void usage(void)
484
484
{
485
485
  print_version();
486
 
  puts("By Igor Romanenko, Monty, Jani & Sinisa");
487
 
  puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n");
488
 
  puts("Dumping definition and data DRIZZLE database or table");
 
486
  puts(_("By Igor Romanenko, Monty, Jani & Sinisa"));
 
487
  puts(_("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n"));
 
488
  puts(_("Dumping definition and data DRIZZLE database or table"));
489
489
  short_usage_sub();
490
490
  print_defaults("drizzle",load_default_groups);
491
491
  my_print_help(my_long_options);
496
496
static void short_usage(void)
497
497
{
498
498
  short_usage_sub();
499
 
  printf("For more options, use %s --help\n", my_progname);
 
499
  printf(_("For more options, use %s --help\n"), my_progname);
500
500
}
501
501
 
502
502
static void write_header(FILE *sql_file, char *db_name)
532
532
    }
533
533
    if (opt_set_charset)
534
534
      fprintf(sql_file,
535
 
"\n/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;"
536
 
"\n/*!40101 SET NAMES %s */;\n",default_charset);
 
535
"\nSET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION;"
 
536
"\nSET NAMES %s;\n",default_charset);
537
537
 
538
538
    if (!path)
539
539
    {
540
540
      fprintf(md_result_file,"\
541
 
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;\n\
542
 
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;\n\
 
541
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;\n\
 
542
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;\n\
543
543
");
544
544
    }
545
545
    check_io(sql_file);
559
559
    if (!path)
560
560
    {
561
561
      fprintf(md_result_file,"\
562
 
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;\n\
563
 
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;\n");
 
562
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;\n\
 
563
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;\n");
564
564
    }
565
565
    if (opt_set_charset)
566
 
      fprintf(sql_file, "/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n");
 
566
      fprintf(sql_file, "SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION;\n");
567
567
    if (opt_comments)
568
568
    {
569
569
      if (opt_dump_date)
631
631
      opt_password= strdup(argument);
632
632
      if (opt_password == NULL)
633
633
      {
634
 
        fprintf(stderr, "Memory allocation error while copying password. "
635
 
                        "Aborting.\n");
 
634
        fprintf(stderr, _("Memory allocation error while copying password. "
 
635
                        "Aborting.\n"));
636
636
        exit(ENOMEM);
637
637
      }
638
638
      while (*argument)
671
671
        a crash even if the input destination buffer is large enough
672
672
        to hold the output.
673
673
      */
674
 
      die(EX_USAGE, "Input filename too long: %s", argument);
 
674
      die(EX_USAGE, _("Input filename too long: %s"), argument);
675
675
    }
676
676
 
677
677
    break;
714
714
  {
715
715
    if (!strchr(argument, '.'))
716
716
    {
717
 
      fprintf(stderr, "Illegal use of option --ignore-table=<database>.<table>\n");
 
717
      fprintf(stderr, _("Illegal use of option --ignore-table=<database>.<table>\n"));
718
718
      exit(1);
719
719
    }
720
720
    char * tmpptr= strdup(argument);
739
739
      if (error_len)
740
740
      {
741
741
        strncpy(buff, err_ptr, min((uint32_t)sizeof(buff), error_len));
742
 
        fprintf(stderr, "Invalid mode to --compatible: %s\n", buff);
 
742
        fprintf(stderr, _("Invalid mode to --compatible: %s\n"), buff);
743
743
        exit(1);
744
744
      }
745
745
      mode= opt_compatible_mode;
799
799
                fields_terminated))
800
800
  {
801
801
    fprintf(stderr,
802
 
            "%s: You must use option --tab with --fields-...\n", my_progname);
 
802
            _("%s: You must use option --tab with --fields-...\n"), my_progname);
803
803
    return(EX_USAGE);
804
804
  }
805
805
 
816
816
    opt_master_data= DRIZZLE_OPT_MASTER_DATA_COMMENTED_SQL;
817
817
  if (opt_single_transaction && opt_lock_all_tables)
818
818
  {
819
 
    fprintf(stderr, "%s: You can't use --single-transaction and "
820
 
            "--lock-all-tables at the same time.\n", my_progname);
 
819
    fprintf(stderr, _("%s: You can't use --single-transaction and "
 
820
            "--lock-all-tables at the same time.\n"), my_progname);
821
821
    return(EX_USAGE);
822
822
  }
823
823
  if (opt_master_data)
829
829
    lock_tables= 0;
830
830
  if (enclosed && opt_enclosed)
831
831
  {
832
 
    fprintf(stderr, "%s: You can't use ..enclosed.. and ..optionally-enclosed.. at the same time.\n", my_progname);
 
832
    fprintf(stderr, _("%s: You can't use ..enclosed.. and ..optionally-enclosed.. at the same time.\n"), my_progname);
833
833
    return(EX_USAGE);
834
834
  }
835
835
  if ((opt_databases || opt_alldbs) && path)
836
836
  {
837
837
    fprintf(stderr,
838
 
            "%s: --databases or --all-databases can't be used with --tab.\n",
 
838
            _("%s: --databases or --all-databases can't be used with --tab.\n"),
839
839
            my_progname);
840
840
    return(EX_USAGE);
841
841
  }
860
860
static void DB_error(DRIZZLE *drizzle_arg, const char *when)
861
861
{
862
862
 
863
 
  maybe_die(EX_DRIZZLEERR, "Got error: %d: %s %s",
 
863
  maybe_die(EX_DRIZZLEERR, _("Got error: %d: %s %s"),
864
864
          drizzle_errno(drizzle_arg), drizzle_error(drizzle_arg), when);
865
865
  return;
866
866
}
952
952
  if (drizzle_query(drizzle_con, query) ||
953
953
      (res && !((*res)= drizzle_store_result(drizzle_con))))
954
954
  {
955
 
    maybe_die(EX_DRIZZLEERR, "Couldn't execute '%s': %s (%d)",
 
955
    maybe_die(EX_DRIZZLEERR, _("Couldn't execute '%s': %s (%d)"),
956
956
            query, drizzle_error(drizzle_con), drizzle_errno(drizzle_con));
957
957
    return 1;
958
958
  }
1013
1013
 
1014
1014
static int connect_to_db(char *host, char *user,char *passwd)
1015
1015
{
1016
 
  verbose_msg("-- Connecting to %s...\n", host ? host : "localhost");
 
1016
  verbose_msg(_("-- Connecting to %s...\n"), host ? host : "localhost");
1017
1017
  drizzle_create(&drizzle_connection);
1018
1018
  if (opt_compress)
1019
1019
    drizzle_options(&drizzle_connection,DRIZZLE_OPT_COMPRESS,NULL);
1034
1034
*/
1035
1035
static void dbDisconnect(char *host)
1036
1036
{
1037
 
  verbose_msg("-- Disconnecting from %s...\n", host ? host : "localhost");
 
1037
  verbose_msg(_("-- Disconnecting from %s...\n"), host ? host : "localhost");
1038
1038
  drizzle_close(drizzle);
1039
1039
} /* dbDisconnect */
1040
1040
 
1044
1044
  char *tmp;
1045
1045
 
1046
1046
  if (!(tmp=(char*) malloc(length*2+1)))
1047
 
    die(EX_DRIZZLEERR, "Couldn't allocate memory");
 
1047
    die(EX_DRIZZLEERR, _("Couldn't allocate memory"));
1048
1048
 
1049
1049
  drizzle_escape_string(tmp, pos, length);
1050
1050
  fputc('\'', file);
1386
1386
  if (delayed && (*ignore_flag & IGNORE_INSERT_DELAYED))
1387
1387
  {
1388
1388
    delayed= 0;
1389
 
    verbose_msg("-- Warning: Unable to use delayed inserts for table '%s' "
1390
 
                "because it's of type %s\n", table, table_type);
 
1389
    verbose_msg(_("-- Warning: Unable to use delayed inserts for table '%s' "
 
1390
                "because it's of type %s\n"), table, table_type);
1391
1391
  }
1392
1392
 
1393
1393
  complete_insert= 0;
1400
1400
  insert_option= ((delayed && opt_ignore) ? " DELAYED IGNORE " :
1401
1401
                  delayed ? " DELAYED " : opt_ignore ? " IGNORE " : "");
1402
1402
 
1403
 
  verbose_msg("-- Retrieving table structure for table %s...\n", table);
 
1403
  verbose_msg(_("-- Retrieving table structure for table %s...\n"), table);
1404
1404
 
1405
1405
  len= snprintf(query_buff, sizeof(query_buff),
1406
1406
                "SET OPTION SQL_QUOTE_SHOW_CREATE=%d",
1514
1514
  }
1515
1515
  else
1516
1516
  {
1517
 
    verbose_msg("%s: Warning: Can't set SQL_QUOTE_SHOW_CREATE option (%s)\n",
 
1517
    verbose_msg(_("%s: Warning: Can't set SQL_QUOTE_SHOW_CREATE option (%s)\n"),
1518
1518
                my_progname, drizzle_error(drizzle));
1519
1519
 
1520
1520
    snprintf(query_buff, sizeof(query_buff), "show fields from %s",
1623
1623
          fputs("\t\t<options Comment=\"view\" />\n", sql_file);
1624
1624
          goto continue_xml;
1625
1625
        }
1626
 
        fprintf(stderr, "%s: Can't get keys for table %s (%s)\n",
 
1626
        fprintf(stderr, _("%s: Can't get keys for table %s (%s)\n"),
1627
1627
                my_progname, result_table, drizzle_error(drizzle));
1628
1628
        if (path)
1629
1629
          my_fclose(sql_file, MYF(MY_WME));
1701
1701
        {
1702
1702
          if (drizzle_errno(drizzle) != ER_PARSE_ERROR)
1703
1703
          {                                     /* If old DRIZZLE version */
1704
 
            verbose_msg("-- Warning: Couldn't get status information for " \
1705
 
                        "table %s (%s)\n", result_table,drizzle_error(drizzle));
 
1704
            verbose_msg(_("-- Warning: Couldn't get status information for " \
 
1705
                        "table %s (%s)\n"), result_table,drizzle_error(drizzle));
1706
1706
          }
1707
1707
        }
1708
1708
        else if (!(row= drizzle_fetch_row(result)))
1709
1709
        {
1710
1710
          fprintf(stderr,
1711
 
                  "Error: Couldn't read status information for table %s (%s)\n",
 
1711
                  _("Error: Couldn't read status information for table %s (%s)\n"),
1712
1712
                  result_table,drizzle_error(drizzle));
1713
1713
        }
1714
1714
        else
1735
1735
      check_io(sql_file);
1736
1736
    }
1737
1737
  }
1738
 
  if (complete_insert)
1739
 
  {
 
1738
  if (complete_insert) {
1740
1739
    insert_pat.append(") VALUES ");
1741
1740
    if (!extended_insert)
1742
1741
      insert_pat.append("(");
1850
1849
  */
1851
1850
  if (!get_table_structure(table, db, table_type, &ignore_flag, &num_fields))
1852
1851
  {
1853
 
    maybe_die(EX_TABLE_STATUS, "Error retrieving table structure for table: \"%s\"", table);
 
1852
    maybe_die(EX_TABLE_STATUS, _("Error retrieving table structure for table: \"%s\""), table);
1854
1853
    return;
1855
1854
  }
1856
1855
 
1857
1856
  /* Check --no-data flag */
1858
1857
  if (opt_no_data)
1859
1858
  {
1860
 
    verbose_msg("-- Skipping dump data for table '%s', --no-data was used\n",
 
1859
    verbose_msg(_("-- Skipping dump data for table '%s', --no-data was used\n"),
1861
1860
                table);
1862
1861
    return;
1863
1862
  }
1868
1867
  */
1869
1868
  if (ignore_flag & IGNORE_DATA)
1870
1869
  {
1871
 
    verbose_msg("-- Warning: Skipping data for table '%s' because " \
1872
 
                "it's of type %s\n", table, table_type);
 
1870
    verbose_msg(_("-- Warning: Skipping data for table '%s' because " \
 
1871
                "it's of type %s\n"), table, table_type);
1873
1872
    return;
1874
1873
  }
1875
1874
  /* Check that there are any fields in the table */
1876
1875
  if (num_fields == 0)
1877
1876
  {
1878
 
    verbose_msg("-- Skipping dump data for table '%s', it has no fields\n",
 
1877
    verbose_msg(_("-- Skipping dump data for table '%s', it has no fields\n"),
1879
1878
                table);
1880
1879
    return;
1881
1880
  }
1883
1882
  result_table= quote_name(table,table_buff, 1);
1884
1883
  opt_quoted_table= quote_name(table, table_buff2, 0);
1885
1884
 
1886
 
  verbose_msg("-- Sending SELECT query...\n");
 
1885
  verbose_msg(_("-- Sending SELECT query...\n"));
1887
1886
 
1888
1887
  query_string.clear();
1889
1888
  query_string.reserve(1024);
1938
1937
 
1939
1938
    if (drizzle_real_query(drizzle, query_string.c_str(), query_string.length()))
1940
1939
    {
1941
 
      DB_error(drizzle, "when executing 'SELECT INTO OUTFILE'");
 
1940
      DB_error(drizzle, _("when executing 'SELECT INTO OUTFILE'"));
1942
1941
      return;
1943
1942
    }
1944
1943
  }
1946
1945
  {
1947
1946
    if (!opt_xml && opt_comments)
1948
1947
    {
1949
 
      fprintf(md_result_file,"\n--\n-- Dumping data for table %s\n--\n",
 
1948
      fprintf(md_result_file,_("\n--\n-- Dumping data for table %s\n--\n"),
1950
1949
              result_table);
1951
1950
      check_io(md_result_file);
1952
1951
    }
1983
1982
    }
1984
1983
    if (drizzle_query_with_error_report(drizzle, 0, query_string.c_str()))
1985
1984
    {
1986
 
      DB_error(drizzle, "when retrieving data from server");
 
1985
      DB_error(drizzle, _("when retrieving data from server"));
1987
1986
      goto err;
1988
1987
    }
1989
1988
    if (quick)
1992
1991
      res=drizzle_store_result(drizzle);
1993
1992
    if (!res)
1994
1993
    {
1995
 
      DB_error(drizzle, "when retrieving data from server");
 
1994
      DB_error(drizzle, _("when retrieving data from server"));
1996
1995
      goto err;
1997
1996
    }
1998
1997
 
1999
 
    verbose_msg("-- Retrieving rows...\n");
 
1998
    verbose_msg(_("-- Retrieving rows...\n"));
2000
1999
    if (drizzle_num_fields(res) != num_fields)
2001
2000
    {
2002
 
      fprintf(stderr,"%s: Error in field count for table: %s !  Aborting.\n",
 
2001
      fprintf(stderr,_("%s: Error in field count for table: %s !  Aborting.\n"),
2003
2002
              my_progname, result_table);
2004
2003
      error= EX_CONSCHECK;
2005
2004
      goto err;
2013
2012
    /* Moved disable keys to after lock per bug 15977 */
2014
2013
    if (opt_disable_keys)
2015
2014
    {
2016
 
      fprintf(md_result_file, "/*!40000 ALTER TABLE %s DISABLE KEYS */;\n",
 
2015
      fprintf(md_result_file, "ALTER TABLE %s DISABLE KEYS;\n",
2017
2016
              opt_quoted_table);
2018
2017
      check_io(md_result_file);
2019
2018
    }
2056
2055
 
2057
2056
        if (!(field= drizzle_fetch_field(res)))
2058
2057
          die(EX_CONSCHECK,
2059
 
                      "Not enough fields from table %s! Aborting.\n",
 
2058
                      _("Not enough fields from table %s! Aborting.\n"),
2060
2059
                      result_table);
2061
2060
 
2062
2061
        /*
2242
2241
    if (drizzle_errno(drizzle))
2243
2242
    {
2244
2243
      snprintf(buf, sizeof(buf),
2245
 
               "%s: Error %d: %s when dumping table %s at row: %d\n",
 
2244
               _("%s: Error %d: %s when dumping table %s at row: %d\n"),
2246
2245
               my_progname,
2247
2246
               drizzle_errno(drizzle),
2248
2247
               drizzle_error(drizzle),
2256
2255
    /* Moved enable keys to before unlock per bug 15977 */
2257
2256
    if (opt_disable_keys)
2258
2257
    {
2259
 
      fprintf(md_result_file,"/*!40000 ALTER TABLE %s ENABLE KEYS */;\n",
 
2258
      fprintf(md_result_file,"ALTER TABLE %s ENABLE KEYS;\n",
2260
2259
              opt_quoted_table);
2261
2260
      check_io(md_result_file);
2262
2261
    }
2368
2367
      /* Old server version, dump generic CREATE DATABASE */
2369
2368
      if (opt_drop_database)
2370
2369
        fprintf(md_result_file,
2371
 
                "\n/*!40000 DROP DATABASE IF EXISTS %s*/;\n",
 
2370
                "\nDROP DATABASE IF EXISTS %s;\n",
2372
2371
                qdatabase);
2373
2372
      fprintf(md_result_file,
2374
 
              "\nCREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;\n",
 
2373
              "\nCREATE DATABASE IF NOT EXISTS %s;\n",
2375
2374
              qdatabase);
2376
2375
    }
2377
2376
    else
2378
2377
    {
2379
2378
      if (opt_drop_database)
2380
2379
        fprintf(md_result_file,
2381
 
                "\n/*!40000 DROP DATABASE IF EXISTS %s*/;\n",
 
2380
                "\nDROP DATABASE IF EXISTS %s;\n",
2382
2381
                qdatabase);
2383
2382
      row = drizzle_fetch_row(dbinfo);
2384
2383
      if (row[1])
2400
2399
 
2401
2400
  if (drizzle_select_db(drizzle, database))
2402
2401
  {
2403
 
    DB_error(drizzle, "when selecting the database");
 
2402
    DB_error(drizzle, _("when selecting the database"));
2404
2403
    return 1;                   /* If --force */
2405
2404
  }
2406
2405
  if (!path && !opt_xml)
2464
2463
      {
2465
2464
        numrows++;
2466
2465
        query.append( quote_name(table, table_buff, 1));
2467
 
        query.append( " READ /*!32311 LOCAL */,");
 
2466
        query.append( " READ LOCAL,");
2468
2467
      }
2469
2468
    }
2470
2469
    if (numrows && drizzle_real_query(drizzle, query.c_str(), query.length()-1))
2471
 
      DB_error(drizzle, "when using LOCK TABLES");
 
2470
      DB_error(drizzle, _("when using LOCK TABLES"));
2472
2471
            /* We shall continue here, if --force was given */
2473
2472
    query.clear();
2474
2473
  }
2475
2474
  if (flush_logs)
2476
2475
  {
2477
2476
    if (drizzle_refresh(drizzle, REFRESH_LOG))
2478
 
      DB_error(drizzle, "when doing refresh");
 
2477
      DB_error(drizzle, _("when doing refresh"));
2479
2478
           /* We shall continue here, if --force was given */
2480
2479
  }
2481
2480
  while ((table= getTableName(0)))
2561
2560
 
2562
2561
  init_alloc_root(&root, 8192, 0);
2563
2562
  if (!(dump_tables= pos= (char**) alloc_root(&root, tables * sizeof(char *))))
2564
 
     die(EX_EOM, "alloc_root failure.");
 
2563
     die(EX_EOM, _("alloc_root failure."));
2565
2564
 
2566
2565
  for (; tables > 0 ; tables-- , table_names++)
2567
2566
  {
2572
2571
      if (lock_tables)
2573
2572
      {
2574
2573
        lock_tables_query.append( quote_name(*pos, table_buff, 1));
2575
 
        lock_tables_query.append( " READ /*!32311 LOCAL */,");
 
2574
        lock_tables_query.append( " READ LOCAL,");
2576
2575
      }
2577
2576
      pos++;
2578
2577
    }
2582
2581
      {
2583
2582
        free_root(&root, MYF(0));
2584
2583
      }
2585
 
      maybe_die(EX_ILLEGAL_TABLE, "Couldn't find table: \"%s\"", *table_names);
 
2584
      maybe_die(EX_ILLEGAL_TABLE, _("Couldn't find table: \"%s\""), *table_names);
2586
2585
      /* We shall countinue here, if --force was given */
2587
2586
    }
2588
2587
  }
2597
2596
      {
2598
2597
        free_root(&root, MYF(0));
2599
2598
      }
2600
 
      DB_error(drizzle, "when doing LOCK TABLES");
 
2599
      DB_error(drizzle, _("when doing LOCK TABLES"));
2601
2600
       /* We shall countinue here, if --force was given */
2602
2601
    }
2603
2602
  }
2607
2606
    {
2608
2607
      if (!ignore_errors)
2609
2608
        free_root(&root, MYF(0));
2610
 
      DB_error(drizzle, "when doing refresh");
 
2609
      DB_error(drizzle, _("when doing refresh"));
2611
2610
    }
2612
2611
     /* We shall countinue here, if --force was given */
2613
2612
  }
2660
2659
    else if (!ignore_errors)
2661
2660
    {
2662
2661
      /* SHOW MASTER STATUS reports nothing and --force is not enabled */
2663
 
      my_printf_error(0, "Error: Binlogging on server not active",
 
2662
      my_printf_error(0, _("Error: Binlogging on server not active"),
2664
2663
                      MYF(0));
2665
2664
      drizzle_free_result(master);
2666
2665
      maybe_exit(EX_DRIZZLEERR);
2728
2727
    if (!ignore_errors)
2729
2728
    {
2730
2729
      /* SHOW SLAVE STATUS reports nothing and --force is not enabled */
2731
 
      my_printf_error(0, "Error: Slave not set up", MYF(0));
 
2730
      my_printf_error(0, _("Error: Slave not set up"), MYF(0));
2732
2731
    }
2733
2732
    return 1;
2734
2733
  }
2787
2786
  /* now, start slave if stopped */
2788
2787
  if (drizzle_query_with_error_report(drizzle_con, 0, "START SLAVE"))
2789
2788
  {
2790
 
    my_printf_error(0, "Error: Unable to start slave", MYF(0));
 
2789
    my_printf_error(0, _("Error: Unable to start slave"), MYF(0));
2791
2790
    return 1;
2792
2791
  }
2793
2792
  return(0);
2855
2854
 
2856
2855
static int start_transaction(DRIZZLE *drizzle_con)
2857
2856
{
2858
 
  /*
2859
 
    We use BEGIN for old servers. --single-transaction --master-data will fail
2860
 
    on old servers, but that's ok as it was already silently broken (it didn't
2861
 
    do a consistent read, so better tell people frankly, with the error).
2862
 
 
2863
 
    We want the first consistent read to be used for all tables to dump so we
2864
 
    need the REPEATABLE READ level (not anything lower, for example READ
2865
 
    COMMITTED would give one new consistent read per dumped table).
2866
 
  */
2867
 
  if ((drizzle_get_server_version(drizzle_con) < 40100) && opt_master_data)
2868
 
  {
2869
 
    fprintf(stderr, "-- %s: the combination of --single-transaction and "
2870
 
            "--master-data requires a DRIZZLE server version of at least 4.1 "
2871
 
            "(current server's version is %s). %s\n",
2872
 
            ignore_errors ? "Warning" : "Error",
2873
 
            drizzle_con->server_version ? drizzle_con->server_version : "unknown",
2874
 
            ignore_errors ? "Continuing due to --force, backup may not be consistent across all tables!" : "Aborting.");
2875
 
    if (!ignore_errors)
2876
 
      exit(EX_DRIZZLEERR);
2877
 
  }
2878
 
 
2879
2857
  return (drizzle_query_with_error_report(drizzle_con, 0,
2880
2858
                                        "SET SESSION TRANSACTION ISOLATION "
2881
2859
                                        "LEVEL REPEATABLE READ") ||
2882
2860
          drizzle_query_with_error_report(drizzle_con, 0,
2883
2861
                                        "START TRANSACTION "
2884
 
                                        "/*!40100 WITH CONSISTENT SNAPSHOT */"));
 
2862
                                        "WITH CONSISTENT SNAPSHOT"));
2885
2863
}
2886
2864
 
2887
2865
 
2995
2973
  {
2996
2974
    if (drizzle_errno(drizzle) != ER_PARSE_ERROR)
2997
2975
    {                                   /* If old DRIZZLE version */
2998
 
      verbose_msg("-- Warning: Couldn't get status information for "
2999
 
                  "table %s (%s)\n", table_name, drizzle_error(drizzle));
 
2976
      verbose_msg(_("-- Warning: Couldn't get status information for "
 
2977
                  "table %s (%s)\n"), table_name, drizzle_error(drizzle));
3000
2978
      return(result);                       /* assume table is ok */
3001
2979
    }
3002
2980
  }
3003
2981
  if (!(row= drizzle_fetch_row(res)))
3004
2982
  {
3005
2983
    fprintf(stderr,
3006
 
            "Error: Couldn't read status information for table %s (%s)\n",
 
2984
            _("Error: Couldn't read status information for table %s (%s)\n"),
3007
2985
            table_name, drizzle_error(drizzle));
3008
2986
    drizzle_free_result(res);
3009
2987
    return(result);                         /* assume table is ok */
3065
3043
  if (drizzle_query(drizzle, show_keys_buff) ||
3066
3044
      !(res= drizzle_store_result(drizzle)))
3067
3045
  {
3068
 
    fprintf(stderr, "Warning: Couldn't read keys from table %s;"
3069
 
            " records are NOT sorted (%s)\n",
 
3046
    fprintf(stderr, _("Warning: Couldn't read keys from table %s;"
 
3047
            " records are NOT sorted (%s)\n"),
3070
3048
            table_name, drizzle_error(drizzle));
3071
3049
    /* Don't exit, because it's better to print out unsorted records */
3072
3050
    goto cleanup;
3096
3074
    result= (char *)malloc(result_length + 10);
3097
3075
    if (!result)
3098
3076
    {
3099
 
      fprintf(stderr, "Error: Not enough memory to store ORDER BY clause\n");
 
3077
      fprintf(stderr, _("Error: Not enough memory to store ORDER BY clause\n"));
3100
3078
      goto cleanup;
3101
3079
    }
3102
3080
    drizzle_data_seek(res, 0);