~posulliv/drizzle/schema-less

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2010-03-02 07:03:12 UTC
  • mfrom: (1309.2.10 drizzle-build)
  • Revision ID: brian@gaz-20100302070312-u8xyk09u2970pgzp
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1264
1264
 
1265
1265
  if (error != EEXIST)
1266
1266
  {
1267
 
    if (error>0)
 
1267
    if (error > 0)
1268
1268
    {
1269
1269
      errno= error;
1270
1270
      error= 1;
1271
1271
    }
1272
1272
    else
1273
1273
    {
1274
 
      if (!table.IsInitialized())
 
1274
      if (not table.IsInitialized())
1275
1275
      {
1276
1276
        error= 4;
1277
1277
      }
1283
1283
 
1284
1284
  share->table_category= get_table_category(& share->db);
1285
1285
 
1286
 
  if (!error)
 
1286
  if (not error)
1287
1287
    session.status_var.opened_shares++;
1288
1288
 
1289
1289
err_not_open: