~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_access.c

  • Committer: Monty Taylor
  • Date: 2008-10-23 00:05:28 UTC
  • Revision ID: monty@inaugust.com-20081023000528-grdvrd8c4058nutm
Moved my_handler to myisam, which is where it actually belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "config.h"
17
 
 
18
 
#include "drizzled/internal/my_sys.h"
19
 
#include "drizzled/internal/m_string.h"
20
 
 
21
 
namespace drizzled
22
 
{
23
 
namespace internal
24
 
{
 
16
#include "mysys_priv.h"
 
17
#include <mystrings/m_string.h>
25
18
 
26
19
/*
27
20
  List of file names that causes problem on windows
28
21
 
29
22
  NOTE that one can also not have file names of type CON.TXT
30
 
 
 
23
  
31
24
  NOTE: it is important to keep "CLOCK$" on the first place,
32
25
  we skip it in check_if_legal_tablename.
33
26
*/
44
37
/*
45
38
  Looks up a null-terminated string in a list,
46
39
  case insensitively.
47
 
 
 
40
 
48
41
  SYNOPSIS
49
42
    str_list_find()
50
43
    list        list of items
96
89
 
97
90
/*
98
91
  Check if a table name may cause problems
99
 
 
 
92
 
100
93
  SYNOPSIS
101
94
    check_if_legal_tablename
102
95
    name        Table name (without any extensions)
121
114
}
122
115
 
123
116
 
124
 
} /* namespace internal */
125
 
} /* namespace drizzled */