More repl table columns: chunk_time, chunk_index, lower_boundary, and upper_boundary (those two replace boundaries).

This commit is contained in:
Daniel Nichter
2011-09-23 10:13:57 -06:00
parent b783470aaa
commit 07cb6010a2
2 changed files with 68 additions and 74 deletions

View File

@@ -44,7 +44,7 @@ $Data::Dumper::Quotekeys = 0;
# Quoter - <Quoter> object
#
# Optional Arguments:
# chunk_indexd - Index to use for nibbling
# chunk_index - Index to use for nibbling
#
# Returns:
# NibbleIterator object
@@ -278,6 +278,11 @@ sub nibble_number {
return $self->{nibbleno};
}
sub nibble_index {
my ($self) = @_;
return $self->{index};
}
sub set_chunk_size {
my ($self, $limit) = @_;
MKDEBUG && _d('Setting new chunk size (LIMIT):', $limit);