~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_array.h

  • Committer: jay
  • Date: 2008-12-23 00:18:10 UTC
  • Revision ID: jay@piggy.tangent.org-20081223001810-026ibij22q2842k1
Had a --regex-replace by accident. Should have been --replace_column call.  Only showed up in make test, not running single test, because InnoDB key numbers were different with multiple test running.

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
#ifndef DRIZZLED_SQL_ARRAY_H
 
21
#define DRIZZLED_SQL_ARRAY_H
 
22
 
20
23
#include <mysys/my_sys.h>
21
24
 
22
 
/* 
 
25
/*
23
26
  Array of pointers to Elem that uses memory from MEM_ROOT
24
27
 
25
28
  MEM_ROOT has no realloc() so this is supposed to be used for cases when
89
92
  }
90
93
};
91
94
 
 
95
#endif /* DRIZZLED_SQL_ARRAY_H */