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

Commit 4206391

Browse files
committed
Avoid infinite loop in Firebird
1 parent 4598ae3 commit 4206391

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ServiceStack.OrmLite.Firebird/FirebirdOrmLiteDialectProvider.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,6 @@ public override string EscapeWildcards(string value)
659659

660660
public override string GetColumnNames(ModelDefinition modelDef)
661661
{
662-
if (QuoteNames)
663-
return modelDef.GetColumnNames(this);
664-
665662
var sqlColumns = StringBuilderCache.Allocate();
666663
foreach (var field in modelDef.FieldDefinitions)
667664
{

src/ServiceStack.OrmLiteV45/ServiceStack.OrmLiteV45.Signed.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
23+
<DocumentationFile>
24+
</DocumentationFile>
2325
</PropertyGroup>
2426
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2527
<DebugType>pdbonly</DebugType>
@@ -28,6 +30,7 @@
2830
<DefineConstants>TRACE;NET45</DefineConstants>
2931
<ErrorReport>prompt</ErrorReport>
3032
<WarningLevel>4</WarningLevel>
33+
<DocumentationFile>bin\Release\ServiceStack.OrmLite.XML</DocumentationFile>
3134
</PropertyGroup>
3235
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
3336
<OutputPath>bin\Signed\</OutputPath>

0 commit comments

Comments
 (0)