summaryrefslogtreecommitdiff
path: root/sql/sql_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_string.h')
-rw-r--r--sql/sql_string.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h
index feab8070cd2..f53015fbd6b 100644
--- a/sql/sql_string.h
+++ b/sql/sql_string.h
@@ -566,16 +566,6 @@ public:
return Ptr+ old_length; /* Area to use */
}
- inline bool prep_alloc(uint32 arg_length, uint32 step_alloc)
- {
- uint32 new_length= arg_length + str_length;
- if (new_length > Alloced_length)
- {
- if (realloc(new_length + step_alloc))
- return true;
- }
- return false;
- }
inline bool append(const char *s, uint32 arg_length, uint32 step_alloc)
{