~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/find_in_set.cc

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
21
 
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
22
22
#include <drizzled/function/find_in_set.h>
23
23
 
24
24
/* Search after a string in a string of strings separated by ',' */
25
25
/* Returns number of found type >= 1 or 0 if not found */
26
26
/* This optimizes searching in enums to bit testing! */
27
27
 
28
 
namespace drizzled
29
 
{
30
 
 
31
28
void Item_func_find_in_set::fix_length_and_dec()
32
29
{
33
30
  decimals=0;
56
53
  if (!find || !buffer)
57
54
  {
58
55
    null_value=1;
59
 
    return 0;
 
56
    return 0; /* purecov: inspected */
60
57
  }
61
58
  null_value=0;
62
59
 
105
102
  return 0;
106
103
}
107
104
 
108
 
} /* namespace drizzled */