MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / skip_binary

Method skip_binary

sql/sql_lex.h:1818–1826  ·  view source on GitHub ↗

Skip binary from the input stream. @param n number of bytes to accept. */

Source from the content-addressed store, hash-verified

1816 @param n number of bytes to accept.
1817 */
1818 void skip_binary(int n)
1819 {
1820 if (m_echo)
1821 {
1822 memcpy(m_cpp_ptr, m_ptr, n);
1823 m_cpp_ptr += n;
1824 }
1825 m_ptr += n;
1826 }
1827
1828 /**
1829 Get a character, and advance in the stream.

Callers 3

get_textFunction · 0.80
lex_one_tokenFunction · 0.80
ifFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected