MCPcopy Create free account
hub / github.com/MariaDB/server / q_append

Method q_append

sql/sql_string.h:347–351  ·  view source on GitHub ↗

The following append operations do not extend the strings and in production mode do NOT check that alloced memory! q_*** methods writes values of parameters itself qs_*** methods writes string representation of value */

Source from the content-addressed store, hash-verified

345 qs_*** methods writes string representation of value
346 */
347 void q_append(const char c)
348 {
349 ASSERT_LENGTH(1);
350 Ptr[str_length++] = c;
351 }
352 void q_append2b(const uint32 n)
353 {
354 ASSERT_LENGTH(2);

Callers 15

create_from_wktMethod · 0.45
create_from_wkbMethod · 0.45
create_from_jsonMethod · 0.45
create_from_opresultMethod · 0.45
envelopeMethod · 0.45
create_pointMethod · 0.45
init_from_wktMethod · 0.45
init_from_wkbMethod · 0.45
init_from_jsonMethod · 0.45
is_validMethod · 0.45
simplifyMethod · 0.45
is_clockwiseMethod · 0.45

Calls 1

int4storeFunction · 0.85

Tested by

no test coverage detected