~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/collation_dictionary/dictionary.cc

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
#include <plugin/collation_dictionary/dictionary.h>
 
21
#include "config.h"
 
22
#include "plugin/collation_dictionary/dictionary.h"
23
23
 
24
24
using namespace drizzled;
25
25
 
28
28
 
29
29
static int init(drizzled::module::Context &context)
30
30
{
31
 
  character_sets= new CharacterSetsTool;
32
 
  collations= new CollationsTool;
 
31
  character_sets= new(std::nothrow)CharacterSetsTool;
 
32
  collations= new(std::nothrow)CollationsTool;
33
33
 
34
34
  context.add(character_sets);
35
35
  context.add(collations);