~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema.cc

  • Committer: Monty Taylor
  • Date: 2009-10-27 17:36:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1201.
  • Revision ID: mordred@inaugust.com-20091027173623-4af3fusj3cu5lktt
Replaced overridable virtual methods with passing name to constructor. Now individual plugins will not be allowed to set their own plugin type name. :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
580
580
 
581
581
  if ((retval= initTableMethods()) == true)
582
582
  {
583
 
fprintf(stderr,"Failed initTableMethods\n");
584
583
    return 1;
585
584
  }
586
585
 
587
586
  if ((retval= initTableColumns()) == true)
588
587
  {
589
 
fprintf(stderr,"Failed initTableColumns\n");
590
588
    return 1;
591
589
  }
592
590
 
593
591
  if ((retval= initTables()) == true)
594
592
  {
595
 
fprintf(stderr,"Failed initTables\n");
596
593
    return 1;
597
594
  }
598
595