We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8658acb commit 78a6489Copy full SHA for 78a6489
1 file changed
lib/GADS/Datum/Code.pm
@@ -162,7 +162,8 @@ sub write_cache
162
my $formatter = $self->schema->storage->datetime_parser;
163
164
my @values = sort @{$self->value} if defined $self->value->[0];
165
- return if grep { $_ > 250 } map { length($_) } @values; # If the length is greater than 250 characters do not insert it
+ # If the length is greater than 250 characters do not insert it to the cache table
166
+ return if grep { $_ > 250 } map { length($_) } @values;
167
168
# We are generally already in a transaction at this point, but
169
# start another one just in case
0 commit comments