~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/find_in_set.cc

  • Committer: Stewart Smith
  • Date: 2009-10-08 12:39:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091008123927-qpf9hog04w4xc5aj
make directory_file_name() static to mysys/my_lib.cc

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;
105
102
  return 0;
106
103
}
107
104
 
108
 
} /* namespace drizzled */