~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/unireg.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:45:08 UTC
  • Revision ID: brian@tangent.org-20080713224508-hb20z4okblotb39a
longlong replacement

Show diffs side-by-side

added added

removed removed

Lines of Context:
973
973
             (field->flags & NOT_NULL_FLAG))
974
974
    {
975
975
      regfield->set_notnull();
976
 
      regfield->store((longlong) 1, TRUE);
 
976
      regfield->store((int64_t) 1, TRUE);
977
977
    }
978
978
    else if (type == Field::YES)                // Old unireg type
979
979
      regfield->store(ER(ER_YES),(uint) strlen(ER(ER_YES)),system_charset_info);