use of org.hsqldb_voltpatches.rowio.RowOutputTextQuoted in project voltdb by VoltDB.
the class TextCache method initBuffers.
protected void initBuffers() {
if (isQuoted || isAllQuoted) {
rowIn = new RowInputTextQuoted(fs, vs, lvs, isAllQuoted);
rowOut = new RowOutputTextQuoted(fs, vs, lvs, isAllQuoted, stringEncoding);
} else {
rowIn = new RowInputText(fs, vs, lvs, false);
rowOut = new RowOutputText(fs, vs, lvs, false, stringEncoding);
}
}
Aggregations