Skip to content

Commit

Permalink
Update compare_with_db_structure_SQLServer.xml test
Browse files Browse the repository at this point in the history
  • Loading branch information
raczeja committed Feb 10, 2021
1 parent ee15ea3 commit f957a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SELECT so.name ,
FROM sysobjects so
INNER JOIN syscolumns sc ON so.id = sc.id
INNER JOIN sys.types st ON st.system_type_id = sc.xtype
WHERE so.xtype = 'U' and so.name != 'TemplateContactType'
WHERE so.xtype = 'U' and so.name not like 'TemplateKeyComparator%'
ORDER BY 1,2,3,4;
]]>
</sql>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SELECT so.name ,
FROM sysobjects so
INNER JOIN syscolumns sc ON so.id = sc.id
INNER JOIN sys.types st ON st.system_type_id = sc.xtype
WHERE so.xtype = 'U' and so.name != 'TemplateContactType'
WHERE so.xtype = 'U' and so.name not like 'TemplateKeyComparator%'
ORDER BY 1,2,3,4;
]]>
</sql>
Expand Down

0 comments on commit f957a2f

Please sign in to comment.