MCPcopy Create free account
hub / github.com/duckdb/duckdb / ShouldConvertValue

Method ShouldConvertValue

tools/shell/shell_renderer.cpp:615–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

613 }
614
615 bool ShouldConvertValue(const char *value, idx_t str_len) override {
616 for (idx_t i = 0; i < str_len; i++) {
617 if (value[i] == '\n') {
618 return true;
619 }
620 }
621 return false;
622 }
623
624 string ConvertValue(const char *value, idx_t str_len) override {
625 string result;

Callers 1

TryConvertChunkMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected