public String toString()

in harry-core/src/harry/reconciler/Reconciler.java [303:315]


        public String toString(SchemaSpec schema)
        {
            return " rowStateRow("
                   + partitionState.pd +
                   "L, " + cd +
                   (partitionState.staticRow == null ? "" : ", values(" + StringUtils.toString(partitionState.staticRow.vds) + ")") +
                   (partitionState.staticRow == null ? "" : ", lts(" + StringUtils.toString(partitionState.staticRow.lts) + ")") +
                   ", values(" + StringUtils.toString(vds) + ")" +
                   ", lts(" + StringUtils.toString(lts) + ")" +
                   (schema == null ? "" : ", clustering=" + (cd == STATIC_CLUSTERING ? "static" : Arrays.toString(schema.inflateClusteringKey(cd)))) +
                   (schema == null ? "" : ", values=" + Arrays.toString(cd == STATIC_CLUSTERING ? schema.inflateStaticColumns(vds) : schema.inflateRegularColumns(vds))) +
                   ")";
        }