~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/filesystem_engine.cc

  • Committer: Monty Taylor
  • Date: 2010-12-05 07:35:32 UTC
  • mfrom: (1974 b)
  • mto: (1975.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1976.
  • Revision ID: mordred@inaugust.com-20101205073532-hehqwv27pbd7byjm
Merged source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
  // then columns of this table are added dynamically here.
318
318
  FormatInfo format;
319
319
  format.parseFromTable(&table_proto);
320
 
  if (!format.isTagFormat() || !format.isFileGiven()) {
 
320
  if (not format.isTagFormat() || not format.isFileGiven())
 
321
  {
321
322
    close(fd);
322
323
    return EEXIST;
323
324
  }
324
325
 
325
 
  vector< map<string, string> > vm;
326
 
  if (parseTaggedFile(format, vm) != 0) {
 
326
  std::vector< std::map<std::string, std::string> > vm;
 
327
  if (parseTaggedFile(format, vm) != 0)
 
328
  {
327
329
    close(fd);
328
330
 
329
331
    return EEXIST;
336
338
  // we don't care what user provides, just clear them all
337
339
  table_proto.clear_field();
338
340
  // we take the first section as sample
339
 
  map<string, string> kv= vm[0];
340
 
  for (map<string, string>::iterator iter= kv.begin();
 
341
  std::map<string, string> kv= vm[0];
 
342
  for (std::map<string, string>::iterator iter= kv.begin();
341
343
       iter != kv.end();
342
344
       ++iter)
343
345
  {