mirror of
https://github.com/MariaDB/server.git
synced 2026-04-29 11:45:32 +02:00
Changes and fixes for windows compilation
VC++Files/libmysqld/libmysqld.dsp: added sql/my_decimal.cc VC++Files/sql/mysqld.dsp: added my_decimal.cpp VC++Files/strings/strings.dsp: added decimal.c sql/field.cc: conversion fixes for windows compilation sql/item.h: fix for windows compilation sql/item_func.cc: fixed conversion for windows (cast from ulonglong to double is not supported) sql/item_sum.cc: typecast fix for windows compilation sql/sp_head.cc: typecast fix fo windows compilation sql/sql_cache.cc: typecast fix for windows compilation
This commit is contained in:
parent
2b1b463cd8
commit
af4b5c896d
9 changed files with 24 additions and 8 deletions
|
|
@ -453,7 +453,11 @@ public:
|
|||
longlong val_int();
|
||||
String *val_str(String *sp);
|
||||
my_decimal *val_decimal(my_decimal *);
|
||||
#ifdef __WIN__
|
||||
bool is_null();
|
||||
#else
|
||||
inline bool is_null();
|
||||
#endif
|
||||
void print(String *str);
|
||||
|
||||
inline void make_field(Send_field *field)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue