diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-09-14 22:10:44 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-09-14 22:10:44 +0200 |
commit | 03940ba0028b1106884dbfedadccb1ebea24be6a (patch) | |
tree | a3ded82812801b1e77b04e38568af5a0081053b9 /Bugzilla/DB | |
parent | 4d1a1df823cd3690ff14b2579291182d6dbf7934 (diff) | |
download | bugs-03940ba0028b1106884dbfedadccb1ebea24be6a.tar bugs-03940ba0028b1106884dbfedadccb1ebea24be6a.tar.gz bugs-03940ba0028b1106884dbfedadccb1ebea24be6a.tar.bz2 bugs-03940ba0028b1106884dbfedadccb1ebea24be6a.tar.xz bugs-03940ba0028b1106884dbfedadccb1ebea24be6a.zip |
Update POD to fix bustage in Perl 5.16.1
r=runtests.pl
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 2 | ||||
-rw-r--r-- | Bugzilla/DB/Schema.pm | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 9cfa83462..81b5726bd 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -924,7 +924,9 @@ sub _bz_raw_column_info { $index = name of an index Returns: An abstract index definition, always in hashref format. If the index does not exist, the function returns undef. + =cut + sub bz_index_info_real { my ($self, $table, $index) = @_; diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index eb46aa80f..e153b3926 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1868,6 +1868,7 @@ C<ALTER TABLE> SQL statement sub get_fk_ddl { + =item C<_get_fk_ddl> =over @@ -1881,7 +1882,9 @@ Protected method. Translates the C<REFERENCES> item of a column into SQL. =over =item C<$table> - The name of the table the reference is from. + =item C<$column> - The name of the column the reference is from + =item C<$references> - The C<REFERENCES> hashref from a column. =back @@ -1982,6 +1985,7 @@ Converts a TYPE from the L</ABSTRACT_SCHEMA> format into the real SQL type. } sub get_column { + =item C<get_column($table, $column)> Description: Public method to get the abstract definition of a column. @@ -2847,6 +2851,7 @@ sub serialize_abstract { in the same fashion as) the current version of Schema. However, it will represent the serialized data instead of ABSTRACT_SCHEMA. + =cut sub deserialize_abstract { |