~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/time_functions.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

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
 
#pragma once
 
20
#ifndef DRIZZLED_TIME_FUNCTIONS_H
 
21
#define DRIZZLED_TIME_FUNCTIONS_H
21
22
 
22
 
#include <drizzled/sql_error.h>
23
 
#include <drizzled/type/time.h>
 
23
#include "drizzled/sql_error.h"
 
24
#include "drizzled/type/time.h"
24
25
 
25
26
namespace drizzled
26
27
{
85
86
  NOTE
86
87
    See str_to_time() for more info.
87
88
*/
88
 
bool str_to_time_with_warn(Session *session, const char *str, uint32_t length, type::Time *l_time);
 
89
bool str_to_time_with_warn(const char *str, uint32_t length, type::Time *l_time);
89
90
 
90
91
void make_truncated_value_warning(Session *session, 
91
92
                                  DRIZZLE_ERROR::enum_warning_level level,
127
128
 
128
129
} /* namespace drizzled */
129
130
 
 
131
#endif /* DRIZZLED_TIME_FUNCTIONS_H */