diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2020-12-28 17:13:46 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2021-04-21 14:08:58 +0300 |
commit | 5e72099b8342232415cf75b95abd23ea20ceb0ce (patch) | |
tree | 75d5fc05cfbefd72cba558c91e785eac85e19e23 /sql/sql_limit.h | |
parent | 13cf8f5e9afc7f64df79b41e2b004c28086371f4 (diff) | |
download | mariadb-git-5e72099b8342232415cf75b95abd23ea20ceb0ce.tar.gz |
cleanup: Delete unused function Select_limit_counters::is_unrestricted
Diffstat (limited to 'sql/sql_limit.h')
-rw-r--r-- | sql/sql_limit.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_limit.h b/sql/sql_limit.h index 943d96940bb..6f32e5d17e9 100644 --- a/sql/sql_limit.h +++ b/sql/sql_limit.h @@ -52,8 +52,6 @@ class Select_limit_counters bool is_unlimited() const { return select_limit_cnt == HA_POS_ERROR; } - bool is_unrestricted() - { return select_limit_cnt == HA_POS_ERROR && offset_limit_cnt == 0; } void set_unlimited() { select_limit_cnt= HA_POS_ERROR; offset_limit_cnt= 0; } |