1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fixes for embedded MySQL

Some limit optimization
This commit is contained in:
monty@donna.mysql.fi
2001-04-25 01:11:29 +03:00
parent 93de112238
commit 9ee2a297c0
17 changed files with 95 additions and 229 deletions

View File

@ -157,6 +157,10 @@ extern unsigned long net_buffer_length;
#define net_new_transaction(net) ((net)->pkt_nr=0)
#ifdef __cplusplus
extern "C" {
#endif
int my_net_init(NET *net, Vio* vio);
void net_end(NET *net);
void net_clear(NET *net);
@ -172,6 +176,10 @@ struct rand_struct {
double max_value_dbl;
};
#ifdef __cplusplus
}
#endif
/* The following is for user defined functions */
enum Item_result {STRING_RESULT,REAL_RESULT,INT_RESULT};