(Record record, RecordMetadata metadata, CharSink<?> sink)
| 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); |
no test coverage detected