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,
334
334
{"no-create-info", 't', "Don't write table creation info.",
461
461
static void check_io(FILE *file)
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);
467
467
static void print_version(void)
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 */
474
474
static void short_usage_sub(void)
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"),
479
printf("OR %s [OPTIONS] --all-databases [OPTIONS]\n", my_progname);
479
printf(_("OR %s [OPTIONS] --all-databases [OPTIONS]\n"), my_progname);
483
483
static void usage(void)
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)
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);
502
502
static void write_header(FILE *sql_file, char *db_name)
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);
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\
545
545
check_io(sql_file);
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");
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)
569
569
if (opt_dump_date)
631
631
opt_password= strdup(argument);
632
632
if (opt_password == NULL)
634
fprintf(stderr, "Memory allocation error while copying password. "
634
fprintf(stderr, _("Memory allocation error while copying password. "
638
638
while (*argument)
671
671
a crash even if the input destination buffer is large enough
672
672
to hold the output.
674
die(EX_USAGE, "Input filename too long: %s", argument);
674
die(EX_USAGE, _("Input filename too long: %s"), argument);
715
715
if (!strchr(argument, '.'))
717
fprintf(stderr, "Illegal use of option --ignore-table=<database>.<table>\n");
717
fprintf(stderr, _("Illegal use of option --ignore-table=<database>.<table>\n"));
720
720
char * tmpptr= strdup(argument);
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);
745
745
mode= opt_compatible_mode;
816
816
opt_master_data= DRIZZLE_OPT_MASTER_DATA_COMMENTED_SQL;
817
817
if (opt_single_transaction && opt_lock_all_tables)
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);
823
823
if (opt_master_data)
830
830
if (enclosed && opt_enclosed)
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);
835
835
if ((opt_databases || opt_alldbs) && path)
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"),
840
840
return(EX_USAGE);
860
860
static void DB_error(DRIZZLE *drizzle_arg, const char *when)
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);
952
952
if (drizzle_query(drizzle_con, query) ||
953
953
(res && !((*res)= drizzle_store_result(drizzle_con))))
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));
1014
1014
static int connect_to_db(char *host, char *user,char *passwd)
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);
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"));
1049
1049
drizzle_escape_string(tmp, pos, length);
1050
1050
fputc('\'', file);
1386
1386
if (delayed && (*ignore_flag & IGNORE_INSERT_DELAYED))
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);
1393
1393
complete_insert= 0;
1400
1400
insert_option= ((delayed && opt_ignore) ? " DELAYED IGNORE " :
1401
1401
delayed ? " DELAYED " : opt_ignore ? " IGNORE " : "");
1403
verbose_msg("-- Retrieving table structure for table %s...\n", table);
1403
verbose_msg(_("-- Retrieving table structure for table %s...\n"), table);
1405
1405
len= snprintf(query_buff, sizeof(query_buff),
1406
1406
"SET OPTION SQL_QUOTE_SHOW_CREATE=%d",
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));
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;
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));
1629
1629
my_fclose(sql_file, MYF(MY_WME));
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));
1708
1708
else if (!(row= drizzle_fetch_row(result)))
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));
1851
1850
if (!get_table_structure(table, db, table_type, &ignore_flag, &num_fields))
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);
1857
1856
/* Check --no-data flag */
1858
1857
if (opt_no_data)
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"),
1869
1868
if (ignore_flag & IGNORE_DATA)
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);
1875
1874
/* Check that there are any fields in the table */
1876
1875
if (num_fields == 0)
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"),
1883
1882
result_table= quote_name(table,table_buff, 1);
1884
1883
opt_quoted_table= quote_name(table, table_buff2, 0);
1886
verbose_msg("-- Sending SELECT query...\n");
1885
verbose_msg(_("-- Sending SELECT query...\n"));
1888
1887
query_string.clear();
1889
1888
query_string.reserve(1024);
1939
1938
if (drizzle_real_query(drizzle, query_string.c_str(), query_string.length()))
1941
DB_error(drizzle, "when executing 'SELECT INTO OUTFILE'");
1940
DB_error(drizzle, _("when executing 'SELECT INTO OUTFILE'"));
1947
1946
if (!opt_xml && opt_comments)
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"),
1951
1950
check_io(md_result_file);
1984
1983
if (drizzle_query_with_error_report(drizzle, 0, query_string.c_str()))
1986
DB_error(drizzle, "when retrieving data from server");
1985
DB_error(drizzle, _("when retrieving data from server"));
1992
1991
res=drizzle_store_result(drizzle);
1995
DB_error(drizzle, "when retrieving data from server");
1994
DB_error(drizzle, _("when retrieving data from server"));
1999
verbose_msg("-- Retrieving rows...\n");
1998
verbose_msg(_("-- Retrieving rows...\n"));
2000
1999
if (drizzle_num_fields(res) != num_fields)
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;
2013
2012
/* Moved disable keys to after lock per bug 15977 */
2014
2013
if (opt_disable_keys)
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);
2242
2241
if (drizzle_errno(drizzle))
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"),
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)
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);
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",
2373
2372
fprintf(md_result_file,
2374
"\nCREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;\n",
2373
"\nCREATE DATABASE IF NOT EXISTS %s;\n",
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",
2383
2382
row = drizzle_fetch_row(dbinfo);
2401
2400
if (drizzle_select_db(drizzle, database))
2403
DB_error(drizzle, "when selecting the database");
2402
DB_error(drizzle, _("when selecting the database"));
2404
2403
return 1; /* If --force */
2406
2405
if (!path && !opt_xml)
2466
2465
query.append( quote_name(table, table_buff, 1));
2467
query.append( " READ /*!32311 LOCAL */,");
2466
query.append( " READ LOCAL,");
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 */
2475
2474
if (flush_logs)
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 */
2481
2480
while ((table= getTableName(0)))
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."));
2566
2565
for (; tables > 0 ; tables-- , table_names++)
2572
2571
if (lock_tables)
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,");
2583
2582
free_root(&root, MYF(0));
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 */
2598
2597
free_root(&root, MYF(0));
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 */
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"));
2612
2611
/* We shall countinue here, if --force was given */
2660
2659
else if (!ignore_errors)
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"),
2665
2664
drizzle_free_result(master);
2666
2665
maybe_exit(EX_DRIZZLEERR);
2728
2727
if (!ignore_errors)
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));
2787
2786
/* now, start slave if stopped */
2788
2787
if (drizzle_query_with_error_report(drizzle_con, 0, "START SLAVE"))
2790
my_printf_error(0, "Error: Unable to start slave", MYF(0));
2789
my_printf_error(0, _("Error: Unable to start slave"), MYF(0));
2856
2855
static int start_transaction(DRIZZLE *drizzle_con)
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).
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).
2867
if ((drizzle_get_server_version(drizzle_con) < 40100) && opt_master_data)
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.");
2876
exit(EX_DRIZZLEERR);
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"));
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 */
3003
2981
if (!(row= drizzle_fetch_row(res)))
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)))
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 */
3096
3074
result= (char *)malloc(result_length + 10);
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"));
3102
3080
drizzle_data_seek(res, 0);