Code Duplication    Length = 7-7 lines in 2 locations

lib/Doctrine/DBAL/Platforms/OraclePlatform.php 2 locations

@@ 779-785 (lines=7) @@
776
            }
777
778
            $fields[] = $this->getColumnDeclarationSQL($column->getQuotedName($this), $column->toArray());
779
            if ($comment = $this->getColumnComment($column)) {
780
                $commentsSQL[] = $this->getCommentOnColumnSQL(
781
                    $diff->getName($this)->getQuotedName($this),
782
                    $column->getQuotedName($this),
783
                    $comment
784
                );
785
            }
786
        }
787
788
        if (count($fields)) {
@@ 826-832 (lines=7) @@
823
                $fields[] = $column->getQuotedName($this) . $this->getColumnDeclarationSQL('', $columnInfo);
824
            }
825
826
            if ($columnHasChangedComment) {
827
                $commentsSQL[] = $this->getCommentOnColumnSQL(
828
                    $diff->getName($this)->getQuotedName($this),
829
                    $column->getQuotedName($this),
830
                    $this->getColumnComment($column)
831
                );
832
            }
833
        }
834
835
        if (count($fields)) {