summaryrefslogtreecommitdiff
path: root/sql/field.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/field.cc')
-rw-r--r--sql/field.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/field.cc b/sql/field.cc
index 2ec164c11de..f24732054b5 100644
--- a/sql/field.cc
+++ b/sql/field.cc
@@ -3498,7 +3498,7 @@ Binlog_type_info Field_new_decimal::binlog_type_info() const
{
DBUG_ASSERT(Field_new_decimal::type() == binlog_type());
return Binlog_type_info(Field_new_decimal::type(), precision +
- (decimals() << 8), 2, binlog_signess());
+ (decimals() << 8), 2, binlog_signedness());
}
@@ -4670,7 +4670,7 @@ Binlog_type_info Field_float::binlog_type_info() const
{
DBUG_ASSERT(Field_float::type() == binlog_type());
return Binlog_type_info(Field_float::type(), pack_length(), 1,
- binlog_signess());
+ binlog_signedness());
}
@@ -4982,7 +4982,7 @@ Binlog_type_info Field_double::binlog_type_info() const
{
DBUG_ASSERT(Field_double::type() == binlog_type());
return Binlog_type_info(Field_double::type(), pack_length(), 1,
- binlog_signess());
+ binlog_signedness());
}