~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/ha_tina.cc

  • Committer: Monty Taylor
  • Date: 2008-08-18 23:04:17 UTC
  • mfrom: (327.1.12 drizzle)
  • Revision ID: monty@inaugust.com-20080818230417-442rhihpahnout34
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define CSM_EXT ".CSM"               // Meta file
59
59
 
60
60
 
61
 
static TINA_SHARE *get_share(const char *table_name, TABLE *table);
 
61
static TINA_SHARE *get_share(const char *table_name, Table *table);
62
62
static int free_share(TINA_SHARE *share);
63
63
static int read_meta_file(File meta_file, ha_rows *rows);
64
64
static int write_meta_file(File meta_file, ha_rows rows, bool dirty);
127
127
  Simple lock controls.
128
128
*/
129
129
static TINA_SHARE *get_share(const char *table_name,
130
 
                             TABLE *table __attribute__((unused)))
 
130
                             Table *table __attribute__((unused)))
131
131
{
132
132
  TINA_SHARE *share;
133
133
  char meta_file_name[FN_REFLEN];
1437
1437
  this (the database will call ::open() if it needs to).
1438
1438
*/
1439
1439
 
1440
 
int ha_tina::create(const char *name, TABLE *table_arg,
 
1440
int ha_tina::create(const char *name, Table *table_arg,
1441
1441
                    HA_CREATE_INFO *create_info __attribute__((unused)))
1442
1442
{
1443
1443
  char name_buff[FN_REFLEN];