diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2017-06-22 20:15:03 +0300 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-06-22 23:12:27 +0300 |
commit | 670b7f5fd4a4cdf82493fec56ddc6fa5de80ba90 (patch) | |
tree | 4b6636296dd26e8576fd4558b93e569a06d9eb4b /sql/partition_info.h | |
parent | 2442a81eff012416883d401425e356f0c6e8afdd (diff) | |
download | mariadb-git-670b7f5fd4a4cdf82493fec56ddc6fa5de80ba90.tar.gz |
Style: API renames
part_recs_slow() -> part_records();
HTON_SUPPORTS_SYS_VERSIONING -> HTON_NATIVE_SYS_VERSIONING.
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r-- | sql/partition_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h index ef20564837c..9dff7a41a4a 100644 --- a/sql/partition_info.h +++ b/sql/partition_info.h @@ -476,7 +476,7 @@ public: part= vers_hist_part(); } // TODO: cache thread-shared part_recs and increment on INSERT - return table->file->part_recs_slow(part) >= vers_info->limit; + return table->file->part_records(part) >= vers_info->limit; } Vers_field_stats& vers_stat_trx(stat_trx_field fld, uint32 part_element_id) { |