Skip to content

Commit 6c6fb51

Browse files
committed
Fix sqlite -> SQLite
1 parent f8e97a1 commit 6c6fb51

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def reset_sequence!(table, column, sequence = nil)
418418
# something beyond a simple insert (e.g. Oracle).
419419
# Most of adapters should implement +insert_fixtures_set+ that leverages bulk SQL insert.
420420
# We keep this method to provide fallback
421-
# for databases like sqlite that do not support bulk inserts.
421+
# for databases like SQLite that do not support bulk inserts.
422422
def insert_fixture(fixture, table_name)
423423
execute(build_fixture_sql(Array.wrap(fixture), table_name), "Fixture Insert")
424424
end

activerecord/test/cases/view_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def test_does_not_dump_view_as_table
156156
end
157157
end
158158

159-
# sqlite dose not support CREATE, INSERT, and DELETE for VIEW
159+
# SQLite dose not support CREATE, INSERT, and DELETE for VIEW
160160
if current_adapter?(:Mysql2Adapter, :SQLServerAdapter, :PostgreSQLAdapter)
161161

162162
class UpdateableViewTest < ActiveRecord::TestCase

guides/source/5_2_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ Please refer to the [Changelog][active-record] for detailed changes.
526526
([Commit](https://github.com/rails/rails/commit/63cf15877bae859ff7b4ebaf05186f3ca79c1863))
527527

528528
* Fixed a bug where column orders for an index weren't written to
529-
`db/schema.rb` when using the sqlite adapter.
529+
`db/schema.rb` when using the SQLite adapter.
530530
([Pull Request](https://github.com/rails/rails/pull/30970))
531531

532532
* Fix `bin/rails db:migrate` with specified `VERSION`.

0 commit comments

Comments
 (0)