Revert "removing unused variable"

This reverts commit 3e4ede81d6.
This commit is contained in:
Aaron Patterson
2010-10-26 13:29:39 -07:00
parent f61f758761
commit c376fd488c

View File

@@ -83,7 +83,7 @@ HEADER
# first dump primary key column
if @connection.respond_to?(:pk_and_sequence_for)
pk = @connection.pk_and_sequence_for(table).first
pk, pk_seq = @connection.pk_and_sequence_for(table)
elsif @connection.respond_to?(:primary_key)
pk = @connection.primary_key(table)
end