public SerDeStats getStats()
        {
            SerDeStats stats = new SerDeStats();

            stats.setRowCount(rowCountDelta);
            // Don't worry about setting raw data size diff.  I have no idea how to calculate that
            // without finding the row we are updating or deleting, which would be a mess.
            return(stats);
        }
 public SerDeStats getStats()
 {
     SerDeStats stats = new SerDeStats();
     stats.setRowCount(rowCountDelta);
     // Don't worry about setting raw data size diff.  I have no idea how to calculate that
     // without finding the row we are updating or deleting, which would be a mess.
     return stats;
 }