public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Fix sqlite adapter to work with the quoted table names returned by later 
versions of sqlite3.
fcheung (author)
Sun Apr 20 16:45:48 -0700 2008
NZKoz (committer)
Sun Apr 20 16:45:48 -0700 2008
commit  a2028a7d7bf4336d01656d947df77ee504927db0
tree    711809a25b4f65eefc985faf45d9f9b800833f04
parent  3b93ca221d3a1b777bd880c18f52010cbd56c18c
...
257
258
259
260
 
261
262
263
...
257
258
259
 
260
261
262
263
0
@@ -257,7 +257,7 @@ module ActiveRecord
0
             record = {}
0
             row.each_key do |key|
0
               if key.is_a?(String)
0
-                record[key.sub(/^\w+\./, '')] = row[key]
0
+                record[key.sub(/^"?\w+"?\./, '')] = row[key]
0
               end
0
             end
0
             record

Comments