This repository was archived by the owner on Mar 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -582,6 +582,11 @@ unsigned int STDCALL mysql_thread_safe(void);
582582bool STDCALL mysql_read_query_result (MYSQL * mysql );
583583int STDCALL mysql_reset_connection (MYSQL * mysql );
584584
585+ unsigned long STDCALL cli_safe_read (MYSQL * mysql , bool * is_data_packet );
586+ enum net_async_status STDCALL cli_safe_read_nonblocking (MYSQL * mysql ,
587+ bool * is_data_packet ,
588+ unsigned long * res );
589+
585590int STDCALL mysql_binlog_open (MYSQL * mysql , MYSQL_RPL * rpl );
586591int STDCALL mysql_binlog_fetch (MYSQL * mysql , MYSQL_RPL * rpl );
587592void STDCALL mysql_binlog_close (MYSQL * mysql , MYSQL_RPL * rpl );
Original file line number Diff line number Diff line change 717717unsigned int mysql_thread_safe(void);
718718bool mysql_read_query_result(MYSQL *mysql);
719719int mysql_reset_connection(MYSQL *mysql);
720+ unsigned long cli_safe_read(MYSQL *mysql, bool *is_data_packet);
721+ enum net_async_status cli_safe_read_nonblocking(MYSQL *mysql,
722+ bool *is_data_packet,
723+ unsigned long *res);
720724int mysql_binlog_open(MYSQL *mysql, MYSQL_RPL *rpl);
721725int mysql_binlog_fetch(MYSQL *mysql, MYSQL_RPL *rpl);
722726void mysql_binlog_close(MYSQL *mysql, MYSQL_RPL *rpl);
Original file line number Diff line number Diff line change @@ -152,6 +152,8 @@ SET(CLIENT_API_FUNCTIONS
152152 mysql_get_ssl_session_data
153153 mysql_free_ssl_session_data
154154 mysql_take_ssl_context_ownership
155+ cli_safe_read
156+ cli_safe_read_nonblocking
155157
156158 CACHE INTERNAL "Functions exported by client API"
157159)
You can’t perform that action at this time.
0 commit comments