Skip to content

Enable identity insert on view's base table for fixtures #1333

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-20.04 # TODO: Change back to 'ubuntu-latest' when https://github.com/microsoft/mssql-docker/issues/899 resolved.
runs-on: ubuntu-latest

env:
COMPOSE_FILE: docker-compose.ci.yml
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Unreleased

#### Fixed

- [#1333](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1333) Enable identity insert on view's base table for fixtures.

## v7.2.5

#### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ def internal_exec_query(sql, name = "SQL", binds = [], prepare: false, async: fa
log(sql, name, binds, async: async) do |notification_payload|
with_raw_connection do |conn|
result = if id_insert_table_name = query_requires_identity_insert?(sql)
# If the table name is a view, we need to get the base table name for enabling identity insert.
id_insert_table_name = view_table_name(id_insert_table_name) if view_exists?(id_insert_table_name)

with_identity_insert_enabled(id_insert_table_name, conn) do
internal_exec_sql_query(sql, conn)
end
Expand Down Expand Up @@ -194,11 +191,14 @@ def execute_procedure(proc_name, *variables)
end

def with_identity_insert_enabled(table_name, conn)
table_name = quote_table_name(table_name)
set_identity_insert(table_name, conn, true)
# If the table name is a view, we need to get the base table name for enabling identity insert.
table_name = view_table_name(table_name) if view_exists?(table_name)
quoted_table_name = quote_table_name(table_name)

set_identity_insert(quoted_table_name, conn, true)
yield
ensure
set_identity_insert(table_name, conn, false)
set_identity_insert(quoted_table_name, conn, false)
end

def use_database(database = nil)
Expand Down
12 changes: 9 additions & 3 deletions test/cases/view_test_sqlserver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,17 @@ class ViewTestSQLServer < ActiveRecord::TestCase
end
end

describe 'identity insert' do
it "identity insert works with views" do
assert_difference("SSTestCustomersView.count", 1) do
describe "identity insert" do
it "creates table record through a view" do
assert_difference("SSTestCustomersView.count", 2) do
SSTestCustomersView.create!(id: 5, name: "Bob")
SSTestCustomersView.create!(id: 6, name: "Tim")
end
end

it "creates table records through a view using fixtures" do
ActiveRecord::FixtureSet.create_fixtures(File.join(ARTest::SQLServer.test_root_sqlserver, "fixtures"), ["sst_customers_view"])
assert_equal SSTestCustomersView.all.count, 2
end
end
end
6 changes: 6 additions & 0 deletions test/fixtures/sst_customers_view.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
david:
name: "David"
balance: 2,004
aidan:
name: "Aidan"
balance: 10,191