Skip to content

Commit 4652955

Browse files
authored
Fix parsing of raw table name from SQL with extra parentheses (#1272)
1 parent 6f3b0de commit 4652955

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
#### Fixed
4+
5+
- [#1272](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/1272) Fix parsing of raw table name from SQL with extra parentheses
6+
17
## v8.0.1
28

39
#### Fixed

lib/active_record/connection_adapters/sqlserver/schema_statements.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ def get_raw_table_name(sql)
711711
elsif s.match?(/^\s*UPDATE\s+.*/i)
712712
s.match(/UPDATE\s+([^\(\s]+)\s*/i)[1]
713713
else
714-
s.match(/FROM\s+((\[[^\(\]]+\])|[^\(\s]+)\s*/i)[1]
714+
s.match(/FROM[\s|\(]+((\[[^\(\]]+\])|[^\(\s]+)\s*/i)[1]
715715
end.strip
716716
end
717717

test/cases/schema_test_sqlserver.rb

+6
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,11 @@ class SchemaTestSQLServer < ActiveRecord::TestCase
101101
assert_equal "[with].[select notation]", connection.send(:get_raw_table_name, "INSERT INTO [with].[select notation] SELECT * FROM [table_name]")
102102
end
103103
end
104+
105+
describe 'CREATE VIEW statements' do
106+
it do
107+
assert_equal "test_table_as", connection.send(:get_raw_table_name, "CREATE VIEW test_views ( test_table_a_id, test_table_b_id ) AS SELECT test_table_as.id as test_table_a_id, test_table_bs.id as test_table_b_id FROM (test_table_as with(nolock) LEFT JOIN test_table_bs with(nolock) ON (test_table_as.id = test_table_bs.test_table_a_id))")
108+
end
109+
end
104110
end
105111
end

0 commit comments

Comments
 (0)