Bug #24190 many exportable definitions of field_in_record_is_null

mysql had several(2) exportable definitions of field_in_record_is_null function.

Fixed with adding static.


storage/federated/ha_federated.cc:
  made static
storage/innobase/handler/ha_innodb.cc:
  made static
This commit is contained in:
unknown 2006-11-10 17:22:43 +02:00
parent 36296ca91d
commit eb9be6b9de
2 changed files with 2 additions and 2 deletions

View File

@ -1534,7 +1534,7 @@ int ha_federated::close(void)
0 otherwise 0 otherwise
*/ */
inline uint field_in_record_is_null(TABLE *table, static inline uint field_in_record_is_null(TABLE *table,
Field *field, Field *field,
char *record) char *record)
{ {

View File

@ -2510,7 +2510,7 @@ get_field_offset(
/****************************************************************** /******************************************************************
Checks if a field in a record is SQL NULL. Uses the record format Checks if a field in a record is SQL NULL. Uses the record format
information in table to track the null bit in record. */ information in table to track the null bit in record. */
inline static inline
uint uint
field_in_record_is_null( field_in_record_is_null(
/*====================*/ /*====================*/