lib/sqlite3/statement.rb in sqlite3-0.0.5 vs lib/sqlite3/statement.rb in sqlite3-0.0.6
- old
+ new
@@ -196,12 +196,9 @@
column_count = @driver.column_count(@handle)
column_count.times do |column|
@columns << @driver.column_name(@handle, column)
@types << @driver.column_decltype(@handle, column)
end
-
- @columns.freeze
- @types.freeze
end
private :get_metadata
# Performs a sanity check to ensure that the statement is not
# closed. If it is, an exception is raised.