diff options
author | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-01-12 22:55:10 +0200 |
---|---|---|
committer | jani@a193-229-222-105.elisa-laajakaista.fi <> | 2005-01-12 22:55:10 +0200 |
commit | 3e3e140e3def665ab0458f0e6b6d230dc67d9490 (patch) | |
tree | 894ebf107e263e6295f5dd2a3f28fd05b7100c14 /sql/sql_analyse.cc | |
parent | 422e37ee0430b05e50ff7e49aad3e57ec425498d (diff) | |
download | mariadb-git-3e3e140e3def665ab0458f0e6b6d230dc67d9490.tar.gz |
Minor clean up.
Diffstat (limited to 'sql/sql_analyse.cc')
-rw-r--r-- | sql/sql_analyse.cc | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sql/sql_analyse.cc b/sql/sql_analyse.cc index 5265857f3b1..33ce62bc5cf 100644 --- a/sql/sql_analyse.cc +++ b/sql/sql_analyse.cc @@ -1029,20 +1029,19 @@ uint check_ulonglong(const char *str, uint length) } /* check_ulonlong */ - /* - FUNCTION: append_escaped() - + Quote special characters in a string. + + SYNOPSIS + append_escaped(to_str, from_str) + to_str (in) A pointer to a String. + from_str (to) A pointer to an allocated string + DESCRIPTION append_escaped() takes a String type variable, where it appends escaped the second argument. Only characters that require escaping will be escaped. - ARGUMENTS - A pointer to a String variable, where results will be appended - A pointer to a String variable, which is appended to the result - String, escaping those characters that require it. - RETURN VALUES 0 Success 1 Out of memory |