summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorAleksey Midenkov <midenok@gmail.com>2017-06-22 20:15:03 +0300
committerAleksey Midenkov <midenok@gmail.com>2017-06-22 23:12:27 +0300
commit670b7f5fd4a4cdf82493fec56ddc6fa5de80ba90 (patch)
tree4b6636296dd26e8576fd4558b93e569a06d9eb4b /storage
parent2442a81eff012416883d401425e356f0c6e8afdd (diff)
downloadmariadb-git-670b7f5fd4a4cdf82493fec56ddc6fa5de80ba90.tar.gz
Style: API renames
part_recs_slow() -> part_records(); HTON_SUPPORTS_SYS_VERSIONING -> HTON_NATIVE_SYS_VERSIONING.
Diffstat (limited to 'storage')
-rw-r--r--storage/innobase/handler/ha_innodb.cc2
-rw-r--r--storage/innobase/handler/ha_innopart.cc2
-rw-r--r--storage/innobase/handler/ha_innopart.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
index 5e3a3621185..d4b5b89ac30 100644
--- a/storage/innobase/handler/ha_innodb.cc
+++ b/storage/innobase/handler/ha_innodb.cc
@@ -3859,7 +3859,7 @@ innobase_init(
innobase_hton->flush_logs = innobase_flush_logs;
innobase_hton->show_status = innobase_show_status;
innobase_hton->flags =
- HTON_SUPPORTS_EXTENDED_KEYS | HTON_SUPPORTS_FOREIGN_KEYS | HTON_SUPPORTS_SYS_VERSIONING;
+ HTON_SUPPORTS_EXTENDED_KEYS | HTON_SUPPORTS_FOREIGN_KEYS | HTON_NATIVE_SYS_VERSIONING;
innobase_hton->release_temporary_latches =
innobase_release_temporary_latches;
diff --git a/storage/innobase/handler/ha_innopart.cc b/storage/innobase/handler/ha_innopart.cc
index 35c77d1d5ec..76f17f995a4 100644
--- a/storage/innobase/handler/ha_innopart.cc
+++ b/storage/innobase/handler/ha_innopart.cc
@@ -3045,7 +3045,7 @@ ha_innopart::records()
}
ha_rows
-ha_innopart::part_recs_slow(void *_part_elem)
+ha_innopart::part_records(void *_part_elem)
{
partition_element *part_elem= reinterpret_cast<partition_element *>(_part_elem);
DBUG_ASSERT(m_part_info);
diff --git a/storage/innobase/handler/ha_innopart.h b/storage/innobase/handler/ha_innopart.h
index ef66420acb1..090543196c4 100644
--- a/storage/innobase/handler/ha_innopart.h
+++ b/storage/innobase/handler/ha_innopart.h
@@ -1356,7 +1356,7 @@ public:
}
virtual ha_rows
- part_recs_slow(void *_part_elem);
+ part_records(void *_part_elem);
private: