355356357358359360361362363364365
if (param == 1) { try { Storable sColumn = (Storable) column; if (!sColumn.isNull()) { sColumn.writeExternal(logicalDataOut); out.reset(); } } catch (IOException ioe) { throw T_Fail.exceptionFail(ioe); }
752753754755756757758759760761762
{ Storable sColumn = (Storable) column; // write field data to the stream, we already handled the null case sColumn.writeExternal(logicalDataOut); fieldDataLength = out.getPosition() - beginPosition - FIELD_HEADER_SIZE; } else
736737738739740741742743744745746