Below is the list of changes that have just been committed into a local
5.0 repository of antony. When antony does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-06-29 15:14:08-07:00, antony@stripped +1 -0
fix Visual Studio build - strictness of compiler could not cast
pointer into a BOOL type.
sql/ha_federated.cc@stripped, 2007-06-29 15:14:00-07:00, antony@stripped +1 -1
fix Visual Studio build - strictness of compiler could not cast
pointer into a BOOL type.
diff -Nrup a/sql/ha_federated.cc b/sql/ha_federated.cc
--- a/sql/ha_federated.cc 2007-06-29 13:56:39 -07:00
+++ b/sql/ha_federated.cc 2007-06-29 15:14:00 -07:00
@@ -1686,7 +1686,7 @@ int ha_federated::write_row(byte *buf)
uint tmp_length;
int error= 0;
bool use_bulk_insert;
- bool auto_increment_update_required= table->next_number_field;
+ bool auto_increment_update_required= (table->next_number_field != NULL);
/* The string containing the values to be added to the insert */
String values_string(values_buffer, sizeof(values_buffer), &my_charset_bin);
| Thread |
|---|
| • bk commit into 5.0 tree (antony:1.2508) | antony | 29 Jun |