diff options
author | msvensson@shellback.(none) <> | 2006-08-21 14:09:38 +0200 |
---|---|---|
committer | msvensson@shellback.(none) <> | 2006-08-21 14:09:38 +0200 |
commit | adaa3a2a60af4b83ac4aea88df93a592e73bbe26 (patch) | |
tree | f8727c731c1bfdb110bcaac0ca0081f920b0d713 | |
parent | c8d1c498fb4a7298e5c5a7e66c541f2ef7dcd325 (diff) | |
parent | 2b2985e0eaf83be1a728abfb22c510e1badb2620 (diff) | |
download | mariadb-git-adaa3a2a60af4b83ac4aea88df93a592e73bbe26.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0-maint
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
-rw-r--r-- | client/mysqltest.c | 3 | ||||
-rw-r--r-- | tests/mysql_client_test.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 549c6e85837..0f0abe682b5 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -4957,9 +4957,6 @@ int main(int argc, char **argv) die("No queries executed but result file found!"); } - - dynstr_free(&ds_res); - if (!got_end_timer) timer_output(); /* No end_timer cmd, end it */ free_used_memory(); diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index f8c091e37f7..88c1a5737d3 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -14975,6 +14975,8 @@ static void test_bug17667() DIE("Read error"); } } + /* Print the line */ + printf("%s", line_buffer); } while (my_memmem(line_buffer, MAX_TEST_QUERY_LENGTH*2, statement_cursor->buffer, statement_cursor->length) == NULL); |