Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 8b31001

Browse files
committed
ignore custom sql test for pgsql
1 parent 1a21572 commit 8b31001

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/ServiceStack.OrmLite.Tests/Expression/JoinAliasTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ public class JoinAliasTests : OrmLiteTestBase
2121
[Test]
2222
public void Can_use_JoinAlias_in_condition()
2323
{
24+
if (Dialect == Dialect.PostgreSql) return; //Invalid Custom SQL for pgsql naming convention
25+
2426
using (var db = OpenDbConnection())
2527
{
2628
db.DropAndCreateTable<Task>();

0 commit comments

Comments
 (0)