#At file:///D:/bzr-connector-net/6.0/ based on
revid:reggie.burnett@stripped
747 Reggie Burnett 2009-08-21
- fixed sql bug in our 6.0 table column ssdl. I don't see how this would affect
stored procedure parameters but bug #44985 is now fixed
modified:
CHANGES
MySql.Data.Entity/Provider/Properties/SchemaDefinition-6.0.ssdl
=== modified file 'CHANGES'
=== modified file 'CHANGES'
--- a/CHANGES 2009-08-20 20:02:17 +0000
+++ b/CHANGES 2009-08-21 15:05:35 +0000
@@ -27,6 +27,8 @@
- fixed sql generation bug with table editor. This bug would cause the data type
to be repeated in some cases when a table was altered.
- sped up MySqlPacket.ReadString slightly by avoiding creating a new temp buffer each
time
+- fixed sql bug in our 6.0 table column ssdl. I don't see how this would affect
+ stored procedure parameters but bug #44985 is now fixed
Version 6.0.4
- fixed regression where using stored procs with datasets (bug #44460)
=== modified file 'MySql.Data.Entity/Provider/Properties/SchemaDefinition-6.0.ssdl'
--- a/MySql.Data.Entity/Provider/Properties/SchemaDefinition-6.0.ssdl 2009-06-09 19:54:16
+0000
+++ b/MySql.Data.Entity/Provider/Properties/SchemaDefinition-6.0.ssdl 2009-08-21 15:05:35
+0000
@@ -31,6 +31,7 @@
IF (LEFT(COLUMN_TYPE,10) = 'binary(16)', 'guid',
IF (INSTR(COLUMN_TYPE, 'unsigned') = 0, DATA_TYPE,
CONCAT('u', DATA_TYPE)))) AS `TypeName`,
+ IF (CHARACTER_MAXIMUM_LENGTH > 2147483647, 2147483647,
CHARACTER_MAXIMUM_LENGTH) AS `MaxLength`,
NUMERIC_PRECISION AS `Precision`,
0 AS `DateTimePrecision`,
NUMERIC_SCALE AS `Scale`,
Attachment: [text/bzr-bundle] bzr/reggie.burnett@sun.com-20090821150535-yp3qqslbn3r2n3tl.bundle
| Thread |
|---|
| • bzr commit into connector-net-6.0 branch (reggie.burnett:747) Bug#44985 | Reggie Burnett | 21 Aug 2009 |