MCPcopy Index your code
hub / github.com/questdb/questdb / println

Method println

core/src/test/java/io/questdb/test/tools/TestUtils.java:1924–1931  ·  view source on GitHub ↗
(Record record, RecordMetadata metadata, CharSink<?> sink)

Source from the content-addressed store, hash-verified

1922 }
1923
1924 public static void println(Record record, RecordMetadata metadata, CharSink<?> sink) {
1925 CursorPrinter.println(record, metadata, sink);
1926 for (int i = 0, n = metadata.getColumnCount(); i < n; i++) {
1927 if (metadata.getColumnType(i) == ColumnType.VARCHAR) {
1928 assertAsciiCompliance(record.getVarcharA(i));
1929 }
1930 }
1931 }
1932
1933 public static void putUtf8(TableWriter.Row r, String s, int columnIndex, boolean symbol) {
1934 byte[] bytes = s.getBytes(Files.UTF_8);

Callers 15

assertBindFailureMethod · 0.95
assertCursorMethod · 0.95
printlnMethod · 0.95
assertExceptionMethod · 0.95
printSqlMethod · 0.95
testFullQueueMethod · 0.95
printCursorMethod · 0.95
testSkipAndRefillMethod · 0.95

Calls 5

printlnMethod · 0.95
assertAsciiComplianceMethod · 0.95
getColumnCountMethod · 0.65
getColumnTypeMethod · 0.65
getVarcharAMethod · 0.65

Tested by

no test coverage detected