diff options
author | unknown <monty@mysql.com> | 2004-05-27 02:47:04 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-05-27 02:47:04 +0300 |
commit | 1d03d1629d64801681238152800bec49c4472afd (patch) | |
tree | 083c718355822147dff4849df70df9516573bb18 /client | |
parent | cc24ac7079827af1290a87ca0d5ce817329a9f6b (diff) | |
download | mariadb-git-1d03d1629d64801681238152800bec49c4472afd.tar.gz |
netware files should always be in 'make dist'
use opt_net_buffer_length instead of net_buffer_length
Makefile.am:
netware files should always be in 'make dist'
client/mysqldump.c:
use opt_net_buffer_length instead of net_buffer_length
configure.in:
netware files should always be in 'make dist'
netware/Makefile.am:
netware files should always be in 'make dist'
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqldump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c index 82c3ee53e33..6dad8182b87 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -1080,7 +1080,7 @@ static void dumpTable(uint numFields, char *table) if (opt_lock) fprintf(md_result_file,"LOCK TABLES %s WRITE;\n", opt_quoted_table); - total_length=net_buffer_length; /* Force row break */ + total_length= opt_net_buffer_length; /* Force row break */ row_break=0; rownr=0; init_length=(uint) strlen(insert_pat)+4; @@ -1225,7 +1225,7 @@ static void dumpTable(uint numFields, char *table) ulong row_length; dynstr_append(&extended_row,")"); row_length = 2 + extended_row.length; - if (total_length + row_length < net_buffer_length) + if (total_length + row_length < opt_net_buffer_length) { total_length += row_length; fputc(',',md_result_file); /* Always row break */ |