We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12cdda4 commit c5d3612Copy full SHA for c5d3612
lib/active_record/connection_adapters/sqlserver/schema_statements.rb
@@ -673,7 +673,7 @@ def get_table_name(sql)
673
674
# Parses the raw table name that is used in the SQL. Table name could include database/schema/etc.
675
def get_raw_table_name(sql)
676
- return nil if sql.blank?
+ return if sql.blank?
677
678
s = sql.gsub(/^\s*EXEC sp_executesql N'/i, "")
679
0 commit comments