~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Monty Taylor
  • Date: 2009-03-24 17:44:41 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324174441-nmsq0gwjlgf7f0mt
Changed handlerton to StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
  enum enum_var_type var_type;
360
360
  Key::Keytype key_type;
361
361
  enum ha_key_alg key_alg;
362
 
  handlerton *db_type;
 
362
  StorageEngine *db_type;
363
363
  enum row_type row_type;
364
364
  enum column_format_type column_format_type;
365
365
  enum ha_rkey_function ha_rkey_mode;
1458
1458
            plugin_ref plugin= ha_resolve_by_name(YYSession, &$1);
1459
1459
 
1460
1460
            if (plugin)
1461
 
              $$= plugin_data(plugin, handlerton*);
 
1461
              $$= plugin_data(plugin, StorageEngine*);
1462
1462
            else
1463
1463
            {
1464
1464
              my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), $1.str);
1472
1472
          {
1473
1473
            plugin_ref plugin;
1474
1474
            if ((plugin= ha_resolve_by_name(YYSession, &$1)))
1475
 
              $$= plugin_data(plugin, handlerton*);
 
1475
              $$= plugin_data(plugin, StorageEngine*);
1476
1476
            else
1477
1477
            {
1478
1478
              my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), $1.str);