File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed
activerecord/lib/active_record/connection_adapters Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -631,7 +631,6 @@ def supports_ddl_transactions?
631
631
true
632
632
end
633
633
634
- # Returns true.
635
634
def supports_explain?
636
635
true
637
636
end
Original file line number Diff line number Diff line change @@ -141,14 +141,12 @@ def adapter_name #:nodoc:
141
141
'SQLite'
142
142
end
143
143
144
- # Returns true
145
144
def supports_ddl_transactions?
146
145
true
147
146
end
148
147
149
- # Returns true if SQLite version is '3.6.8' or greater, false otherwise.
150
148
def supports_savepoints?
151
- sqlite_version >= '3.6.8'
149
+ true
152
150
end
153
151
154
152
# Returns true, since this connection adapter supports prepared statement
@@ -162,7 +160,6 @@ def supports_migrations? #:nodoc:
162
160
true
163
161
end
164
162
165
- # Returns true.
166
163
def supports_primary_key? #:nodoc:
167
164
true
168
165
end
@@ -171,7 +168,6 @@ def requires_reloading?
171
168
true
172
169
end
173
170
174
- # Returns true
175
171
def supports_add_column?
176
172
true
177
173
end
@@ -193,11 +189,6 @@ def clear_cache!
193
189
@statements . clear
194
190
end
195
191
196
- # Returns true
197
- def supports_count_distinct? #:nodoc:
198
- true
199
- end
200
-
201
192
def supports_index_sort_order?
202
193
true
203
194
end
@@ -218,7 +209,6 @@ def encoding
218
209
@connection . encoding . to_s
219
210
end
220
211
221
- # Returns true.
222
212
def supports_explain?
223
213
true
224
214
end
You can’t perform that action at this time.
0 commit comments