Skip to content

Commit

Permalink
#124 - exception during oracle conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjw committed Aug 26, 2021
1 parent 78496ba commit 36ccd21
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CopyToSQLite/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.7.9.0")]
[assembly: AssemblyFileVersion("2.7.9.0")]
[assembly: AssemblyVersion("2.7.10.0")]
[assembly: AssemblyFileVersion("2.7.10.0")]
2 changes: 1 addition & 1 deletion DatabaseSchemaReader/DatabaseSchemaReader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<Version>2.7.9</Version>
<Version>2.7.10</Version>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">
Expand Down
4 changes: 2 additions & 2 deletions DatabaseSchemaReader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.7.9.0")]
[assembly: AssemblyFileVersion("2.7.9.0")]
[assembly: AssemblyVersion("2.7.10.0")]
[assembly: AssemblyFileVersion("2.7.10.0")]
[assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("DatabaseSchemaReaderTest")]
2 changes: 1 addition & 1 deletion DatabaseSchemaReader/SqlGen/SqlServer/ConstraintWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override string WritePrimaryKey(DatabaseConstraint constraint)
{
//UNIQUEIDENTIFIERs may have NON CLUSTERED indexes
//the pk index will have IndexType of PRIMARY NONCLUSTERED
var pkIndex = Table.Indexes.Find(x => x.IndexType.IndexOf("PRIMARY", StringComparison.OrdinalIgnoreCase) != -1);
var pkIndex = Table.Indexes.Find(x => x.IndexType?.IndexOf("PRIMARY", StringComparison.OrdinalIgnoreCase) != -1);
if (pkIndex != null &&
pkIndex.IndexType.IndexOf("NONCLUSTERED", StringComparison.OrdinalIgnoreCase) != -1)
{
Expand Down
4 changes: 2 additions & 2 deletions DatabaseSchemaViewer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.7.9.0")]
[assembly: AssemblyFileVersion("2.7.9.0")]
[assembly: AssemblyVersion("2.7.10.0")]
[assembly: AssemblyFileVersion("2.7.10.0")]

0 comments on commit 36ccd21

Please sign in to comment.