diff options
author | Alexander Barkov <bar@mariadb.com> | 2018-06-05 11:56:19 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2018-06-05 11:56:19 +0400 |
commit | f4dfc609cf89001e948566336f8f2b93ee147723 (patch) | |
tree | 62a44a1dd397b8ae4b405e2c75c00593ea8a62d2 /sql/item_geofunc.h | |
parent | ab297744b7318645159cd5f9ec26378473cecf52 (diff) | |
download | mariadb-git-f4dfc609cf89001e948566336f8f2b93ee147723.tar.gz |
MDEV-16388 Replace member Item::fixed to virtual method is_fixed()
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r-- | sql/item_geofunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_geofunc.h b/sql/item_geofunc.h index 8101433abb5..ede118cc4f3 100644 --- a/sql/item_geofunc.h +++ b/sql/item_geofunc.h @@ -509,7 +509,7 @@ public: Item_geometry_func::fix_length_and_dec(); for (unsigned int i= 0; i < arg_count; ++i) { - if (args[i]->fixed && args[i]->field_type() != MYSQL_TYPE_GEOMETRY) + if (args[i]->is_fixed() && args[i]->field_type() != MYSQL_TYPE_GEOMETRY) { String str; args[i]->print(&str, QT_NO_DATA_EXPANSION); |