~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
736
736
  { "TIMESTAMP", 0, 0, 0, ""},
737
737
  { "TIMESTAMPADD", 0, 0, 0, ""},
738
738
  { "TIMESTAMPDIFF", 0, 0, 0, ""},
739
 
  { "TINYINT", 0, 0, 0, ""},
740
739
  { "TINYTEXT", 0, 0, 0, ""},
741
740
  { "TO", 0, 0, 0, ""},
742
741
  { "TRAILING", 0, 0, 0, ""},
2957
2956
    case DRIZZLE_COLUMN_TYPE_LONGLONG:    return "LONGLONG";
2958
2957
    case DRIZZLE_COLUMN_TYPE_NULL:        return "NULL";
2959
2958
    case DRIZZLE_COLUMN_TYPE_TIMESTAMP:   return "TIMESTAMP";
2960
 
    case DRIZZLE_COLUMN_TYPE_TINY:        return "TINY";
2961
 
    case DRIZZLE_COLUMN_TYPE_VIRTUAL:     return "VIRTUAL";
2962
2959
    default:                     return "?-unknown-?";
2963
2960
  }
2964
2961
}