- removed EXPERIMENTAL status from DBIx::Custom:...
...:Result::kv method
| ... | ... | 
                  @@ -1,3 +1,10 @@  | 
              
| 1 | 
                  +0.25  | 
              |
| 2 | 
                  + - added DBIX_CUSTOM_SUPPRESS_DEPRECTION environment varaible  | 
              |
| 3 | 
                  + to suppress deprecation warnings  | 
              |
| 4 | 
                  + - removed EXPERIMENTAL status from DBIx::Custom::Result::kv method  | 
              |
| 5 | 
                  + - removed EXPERIMETNAL status from DBIx::Custom::Result::flat method  | 
              |
| 6 | 
                  + - renamed DBIx::Custom::Result::column method to values method  | 
              |
| 7 | 
                  + DBIx::Custom::Result::column is deprecated.  | 
              |
| 1 | 8 | 
                  0.24  | 
              
| 2 | 9 | 
                  - support schema-qualified table name  | 
              
| 3 | 10 | 
                  - added EXPERIMENTAL default_schema attribute for postgresql not to conflict  | 
              
| ... | ... | 
                  @@ -591,7 +591,7 @@ Set filter for column.  | 
              
| 591 | 591 | 
                  You can use subroutine or filter name as filter.  | 
              
| 592 | 592 | 
                  This filter is executed after C<type_rule> filter.  | 
              
| 593 | 593 | 
                   | 
              
| 594 | 
                  -=head2 C<flat> EXPERIMENTAL  | 
              |
| 594 | 
                  +=head2 C<flat>  | 
              |
| 595 | 595 | 
                   | 
              
| 596 | 596 | 
                  my $flat = $result->flat;  | 
              
| 597 | 597 | 
                   | 
              
| ... | ... | 
                  @@ -614,7 +614,7 @@ You can create key-value pair easily.  | 
              
| 614 | 614 | 
                   | 
              
| 615 | 615 | 
                  my %titles = $dbi->select(['id', 'title'])->flat;  | 
              
| 616 | 616 | 
                   | 
              
| 617 | 
                  -=head2 C<kv> EXPERIMENTAL  | 
              |
| 617 | 
                  +=head2 C<kv>  | 
              |
| 618 | 618 | 
                   | 
              
| 619 | 619 | 
                  my $key_value = $result->kv;  | 
              
| 620 | 620 | 
                  my $key_values = $result->kv(multi => 1);  |