~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_state.h

  • Committer: Jay Pipes
  • Date: 2009-03-13 23:35:46 UTC
  • mto: This revision was merged to the branch mainline in revision 937.
  • Revision ID: jpipes@serialcoder-20090313233546-n12t6xpf71um75fo
Split index hints out into their own file, removal from sql_lex.h and sql_select.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_SQL_STATE_H
21
 
#define DRIZZLED_SQL_STATE_H
22
 
 
23
 
namespace drizzled
24
 
{
25
 
 
26
 
const char *drizzle_errno_to_sqlstate(uint32_t drizzle_errno);
27
 
 
28
 
} /* namespace drizzled */
29
 
 
30
 
#endif /* DRIZZLED_SQL_STATE_H */
 
20
#ifndef _drizzled_sql_state_h
 
21
#define _drizzled_sql_state_h
 
22
 
 
23
const char *drizzleclient_errno_to_sqlstate(uint32_t drizzleclient_errno);
 
24
 
 
25
#endif