diff options
author | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-03-26 13:01:46 +0500 |
---|---|---|
committer | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-03-26 13:01:46 +0500 |
commit | b5351740c47764bc5b7827ee23231b4a02e7efdc (patch) | |
tree | d7ad8bb0422de015669bc78b6bf3dab9f9c4bb1f /client | |
parent | 7cf2e15dc515e75585b616ee89293ac492ee8b54 (diff) | |
parent | 9b2e0127f02209a6e93fb3dcf2755b7abaf1d097 (diff) | |
download | mariadb-git-b5351740c47764bc5b7827ee23231b4a02e7efdc.tar.gz |
Merge mysql.com:/home/ram/work/b25993/b25993.5.0
into mysql.com:/home/ram/work/b25993/b25993.5.1
client/mysqldump.c:
Auto merged
mysql-test/t/mysqldump.test:
Auto merged
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index f4d56ecc0b0..1faeb0d6e0f 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -2016,7 +2016,7 @@ static uint get_table_structure(char *table, char *db, char *table_type, dynstr_append_checked(&insert_pat, insert_option); dynstr_append_checked(&insert_pat, "INTO "); dynstr_append_checked(&insert_pat, result_table); - if (opt_complete_insert) + if (complete_insert) dynstr_append_checked(&insert_pat, " ("); else { @@ -2040,7 +2040,7 @@ static uint get_table_structure(char *table, char *db, char *table_type, dynstr_append_checked(&insert_pat, ", "); } init=1; - if (opt_complete_insert) + if (complete_insert) dynstr_append_checked(&insert_pat, quote_name(row[SHOW_FIELDNAME], name_buff, 0)); if (!opt_no_create_info) @@ -2198,7 +2198,7 @@ continue_xml: check_io(sql_file); } } - if (opt_complete_insert) + if (complete_insert) { dynstr_append_checked(&insert_pat, ") VALUES "); if (!extended_insert) |