File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -575,6 +575,11 @@ unsigned int STDCALL mysql_thread_safe(void);
575575bool STDCALL mysql_read_query_result (MYSQL * mysql );
576576int STDCALL mysql_reset_connection (MYSQL * mysql );
577577
578+ unsigned long STDCALL cli_safe_read (MYSQL * mysql , bool * is_data_packet );
579+ enum net_async_status STDCALL cli_safe_read_nonblocking (MYSQL * mysql ,
580+ bool * is_data_packet ,
581+ ulong * res );
582+
578583int STDCALL mysql_binlog_open (MYSQL * mysql , MYSQL_RPL * rpl );
579584int STDCALL mysql_binlog_fetch (MYSQL * mysql , MYSQL_RPL * rpl );
580585void STDCALL mysql_binlog_close (MYSQL * mysql , MYSQL_RPL * rpl );
Original file line number Diff line number Diff line change 677677unsigned int mysql_thread_safe(void);
678678bool mysql_read_query_result(MYSQL *mysql);
679679int mysql_reset_connection(MYSQL *mysql);
680+ unsigned long cli_safe_read(MYSQL *mysql, bool *is_data_packet);
681+ enum net_async_status cli_safe_read_nonblocking(MYSQL *mysql,
682+ bool *is_data_packet,
683+ ulong *res);
680684int mysql_binlog_open(MYSQL *mysql, MYSQL_RPL *rpl);
681685int mysql_binlog_fetch(MYSQL *mysql, MYSQL_RPL *rpl);
682686void mysql_binlog_close(MYSQL *mysql, MYSQL_RPL *rpl);
Original file line number Diff line number Diff line change @@ -149,6 +149,8 @@ mysql_result_metadata
149149mysql_get_ssl_session
150150mysql_get_ssl_session_reused
151151mysql_take_ssl_context_ownership
152+ cli_safe_read
153+ cli_safe_read_nonblocking
152154
153155CACHE INTERNAL "Functions exported by client API"
154156
You can’t perform that action at this time.
0 commit comments