~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.cc

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
1448
1448
  return;
1449
1449
}
1450
1450
 
1451
 
static MYSQL_SYSVAR_BOOL(aio, archive_use_aio,
 
1451
static DRIZZLE_SYSVAR_BOOL(aio, archive_use_aio,
1452
1452
  PLUGIN_VAR_NOCMDOPT,
1453
1453
  "Whether or not to use asynchronous IO.",
1454
1454
  NULL, NULL, true);
1455
1455
 
1456
1456
static struct st_mysql_sys_var* archive_system_variables[]= {
1457
 
  MYSQL_SYSVAR(aio),
 
1457
  DRIZZLE_SYSVAR(aio),
1458
1458
  NULL
1459
1459
};
1460
1460
 
1461
1461
mysql_declare_plugin(archive)
1462
1462
{
1463
 
  MYSQL_STORAGE_ENGINE_PLUGIN,
 
1463
  DRIZZLE_STORAGE_ENGINE_PLUGIN,
1464
1464
  "ARCHIVE",
1465
1465
  "3.5",
1466
1466
  "Brian Aker, MySQL AB",