Search in sources :

Example 1 with RowOutputText

use of org.hsqldb_voltpatches.rowio.RowOutputText 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);
    }
}
Also used : RowInputText(org.hsqldb_voltpatches.rowio.RowInputText) RowOutputText(org.hsqldb_voltpatches.rowio.RowOutputText) RowInputTextQuoted(org.hsqldb_voltpatches.rowio.RowInputTextQuoted) RowOutputTextQuoted(org.hsqldb_voltpatches.rowio.RowOutputTextQuoted)

Aggregations

RowInputText (org.hsqldb_voltpatches.rowio.RowInputText)1 RowInputTextQuoted (org.hsqldb_voltpatches.rowio.RowInputTextQuoted)1 RowOutputText (org.hsqldb_voltpatches.rowio.RowOutputText)1 RowOutputTextQuoted (org.hsqldb_voltpatches.rowio.RowOutputTextQuoted)1