#At file:///D:/bzr-connector-net/6.1/ based on revid:reggie.burnett@stripped1w2ic0w36gp
773 Reggie Burnett 2009-09-16
- fixed default collation bug with session provider table (bug #47332)
added:
MySql.Web/Providers/Properties/schema6.sql
modified:
CHANGES
MySql.Web/Providers/MySql.Web.csproj
MySql.Web/Providers/Source/SchemaManager.cs
=== modified file 'CHANGES'
=== modified file 'CHANGES'
--- a/CHANGES 2009-09-16 19:05:15 +0000
+++ b/CHANGES 2009-09-16 19:45:22 +0000
@@ -1,5 +1,6 @@
Version 6.1.3
- fixed compilation problem in NativeDriver inside ExecuteDirect (bug #47354)
+- fixed default collation bug with session provider table (bug #47332)
Version 6.1.2
- fixed hanging after losing network connectivity to server (bug#43761)
=== modified file 'MySql.Web/Providers/MySql.Web.csproj'
--- a/MySql.Web/Providers/MySql.Web.csproj 2009-09-15 00:23:17 +0000
+++ b/MySql.Web/Providers/MySql.Web.csproj 2009-09-16 19:45:22 +0000
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -77,6 +77,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
+ <None Include="Properties\schema6.sql" />
<None Include="Properties\schema1.sql" />
<None Include="Properties\schema4.sql" />
<None Include="Properties\schema2.sql" />
=== added file 'MySql.Web/Providers/Properties/schema6.sql'
--- a/MySql.Web/Providers/Properties/schema6.sql 1970-01-01 00:00:00 +0000
+++ b/MySql.Web/Providers/Properties/schema6.sql 2009-09-16 19:45:22 +0000
@@ -0,0 +1,3 @@
+ALTER TABLE my_aspnet_Sessions CONVERT TO CHARACTER SET DEFAULT;
+
+UPDATE my_aspnet_SchemaVersion SET version=6;
\ No newline at end of file
=== modified file 'MySql.Web/Providers/Source/SchemaManager.cs'
--- a/MySql.Web/Providers/Source/SchemaManager.cs 2009-07-28 20:40:35 +0000
+++ b/MySql.Web/Providers/Source/SchemaManager.cs 2009-09-16 19:45:22 +0000
@@ -39,7 +39,7 @@
/// </summary>
public static class SchemaManager
{
- private const int schemaVersion = 5;
+ private const int schemaVersion = 6;
/// <summary>
/// Gets the most recent version of the schema.
Attachment: [text/bzr-bundle] bzr/reggie.burnett@sun.com-20090916194522-qm09twxyydsy2aba.bundle
| Thread |
|---|
| • bzr commit into connector-net-6.1 branch (reggie.burnett:773) Bug#47332 | Reggie Burnett | 16 Sep |