diff options
author | Daniel Black <daniel@linux.ibm.com> | 2020-04-28 10:46:51 +1000 |
---|---|---|
committer | Robert Bindar <robert@mariadb.org> | 2020-04-29 12:02:47 +0300 |
commit | ba2061da52d9dba06dfd454efc1332f7d6cf476c (patch) | |
tree | 676a6d50d31d5f53263e5c2c158541f8b8986b03 /storage/innobase/include/gis0rtree.ic | |
parent | c238e9b96ab3660656ce440ed55f6380caa0f56b (diff) | |
download | mariadb-git-ba2061da52d9dba06dfd454efc1332f7d6cf476c.tar.gz |
MDEV-21595: innodb offset_t rename to rec_offs
thanks to:
perl -i -pe 's/\boffset_t\b/rec_offs/g' $(git grep -lw offset_t storage/innobase)
Diffstat (limited to 'storage/innobase/include/gis0rtree.ic')
-rw-r--r-- | storage/innobase/include/gis0rtree.ic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/include/gis0rtree.ic b/storage/innobase/include/gis0rtree.ic index 525acb7ecf0..0d346051f00 100644 --- a/storage/innobase/include/gis0rtree.ic +++ b/storage/innobase/include/gis0rtree.ic @@ -40,7 +40,7 @@ rtr_page_cal_mbr( rec_t* rec; byte* field; ulint len; - offset_t* offsets = NULL; + rec_offs* offsets = NULL; double bmin, bmax; double* amin; double* amax; |