diff options
author | Robert Haas | 2009-05-26 11:06:30 +0000 |
---|---|---|
committer | Robert Haas | 2009-05-26 11:06:30 +0000 |
commit | e250b34c5572b3162929c6a6a59c78cbf936ebcd (patch) | |
tree | f820ba2ef8e992f6b3c71c6fb86c962d814dc15d /perl-lib/PgCommitFest/CommitFest.pm | |
parent | 1e5057be510f91d06c7f9d8c126f94f085bc0694 (diff) |
Standardize on YYYY-MM-DD date format.
Diffstat (limited to 'perl-lib/PgCommitFest/CommitFest.pm')
-rw-r--r-- | perl-lib/PgCommitFest/CommitFest.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-lib/PgCommitFest/CommitFest.pm b/perl-lib/PgCommitFest/CommitFest.pm index e6cadd9..f16819d 100644 --- a/perl-lib/PgCommitFest/CommitFest.pm +++ b/perl-lib/PgCommitFest/CommitFest.pm @@ -114,7 +114,7 @@ EOM # Load list of comments. my $comment_list = $r->db->select(<<EOM, $d->{'id'}); SELECT v.id, v.patch_id, v.patch_comment_type, v.message_id, v.content, - v.creator, to_char(v.creation_time, 'MM/DD/YYYY') AS creation_time + v.creator, to_char(v.creation_time, 'YYYY-MM-DD') AS creation_time FROM most_recent_comments(?) v EOM for my $c (@$comment_list) { |