1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Removing useless mysql_field_seek

This commit is contained in:
unknown
2005-04-25 09:51:37 +02:00
parent 40ebb19b02
commit fea116cfb5

View File

@ -2228,7 +2228,7 @@ print_warnings()
/* Bail out when no warnings */ /* Bail out when no warnings */
my_ulonglong num_rows = mysql_num_rows(result); my_ulonglong num_rows = mysql_num_rows(result);
if( num_rows == 0 ) if (num_rows == 0)
{ {
mysql_free_result(result); mysql_free_result(result);
return; return;
@ -2237,7 +2237,6 @@ print_warnings()
/* Print the warnings */ /* Print the warnings */
while ((cur= mysql_fetch_row(result))) while ((cur= mysql_fetch_row(result)))
{ {
mysql_field_seek(result, 0);
tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]); tee_fprintf(PAGER, "%s (Code %s): %s\n", cur[0], cur[1], cur[2]);
} }
mysql_free_result(result); mysql_free_result(result);