|
Lines 686-691
sub column_exists {
Link Here
|
| 686 |
return $exists; |
686 |
return $exists; |
| 687 |
} |
687 |
} |
| 688 |
|
688 |
|
|
|
689 |
=head2 TableExists |
| 690 |
|
| 691 |
Test if a table exists |
| 692 |
|
| 693 |
=cut |
| 694 |
|
| 689 |
sub TableExists { # Legacy name |
695 |
sub TableExists { # Legacy name |
| 690 |
my $table = shift; |
696 |
my $table = shift; |
| 691 |
eval { |
697 |
eval { |
|
Lines 698-703
sub TableExists { # Legacy name
Link Here
|
| 698 |
return 0; |
704 |
return 0; |
| 699 |
} |
705 |
} |
| 700 |
|
706 |
|
|
|
707 |
=head2 table_exists |
| 708 |
|
| 709 |
Better name for legacy TableExists |
| 710 |
|
| 711 |
=cut |
| 712 |
|
| 701 |
sub table_exists { # More consistently named alias for TableExists |
713 |
sub table_exists { # More consistently named alias for TableExists |
| 702 |
return TableExists(@_); |
714 |
return TableExists(@_); |
| 703 |
} |
715 |
} |
|
Lines 1041-1047
sub sanitize_zero_date {
Link Here
|
| 1041 |
} |
1053 |
} |
| 1042 |
} |
1054 |
} |
| 1043 |
|
1055 |
|
| 1044 |
=head3 has_non_dynamic_row_format |
1056 |
=head2 has_non_dynamic_row_format |
| 1045 |
|
1057 |
|
| 1046 |
Return the number of tables with row_format that is not Dynamic |
1058 |
Return the number of tables with row_format that is not Dynamic |
| 1047 |
|
1059 |
|
| 1048 |
- |
|
|