~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.cc

fixes for the installing from source doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1266
1266
}
1267
1267
 
1268
1268
 
1269
 
void Item_field::print(String *str, enum_query_type query_type)
 
1269
void Item_field::print(String *str)
1270
1270
{
1271
1271
  if (field && field->getTable()->const_table)
1272
1272
  {
1283
1283
    }
1284
1284
    return;
1285
1285
  }
1286
 
  Item_ident::print(str, query_type);
 
1286
  Item_ident::print(str);
1287
1287
}
1288
1288
 
1289
1289