Remove all strlen() from MariaDB. The objects we are using strlen() on should be changed to either LEX_STRING or String. Reasons for doing this cleanup: - Faster, smaller code - Safer for strings/character sets that contains \0 - Allows us to change c_ptr() to ptr() in some cases This is same task as the WL#2894 at MySQL.
High Level Description modified. --- /tmp/wklog.27.old.10318 2009-05-27 15:46:46.000000000 +0300 +++ /tmp/wklog.27.new.10318 2009-05-27 15:46:46.000000000 +0300 @@ -8,3 +8,5 @@ - Faster, smaller code - Safer for strings/character sets that contains \0 - Allows us to change c_ptr() to ptr() in some cases + +This is same task as the WL#2894 at MySQL.