~jaypipes/drizzle/subscriber-plugin

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2008-07-29 07:47:38 UTC
  • mfrom: (212.6.1 bzero-memset)
  • Revision ID: brian@tangent.org-20080729074738-lfzim6htapm42f2o
MergeĀ fromĀ Mats

Show diffs side-by-side

added added

removed removed

Lines of Context:
794
794
                             const char *table_name_arg,
795
795
                             enum thr_lock_type lock_type_arg)
796
796
  {
797
 
    bzero((char*) this, sizeof(*this));
 
797
    memset(this, 0, sizeof(*this));
798
798
    db= (char*) db_name_arg;
799
799
    table_name= alias= (char*) table_name_arg;
800
800
    lock_type= lock_type_arg;