"( `Property` CHAR(255), `Value` CHAR(1) PRIMARY KEY `Property`)" );
ok( r == ERROR_SUCCESS , "Failed to create table\n" );"( `Property` CHAR(255), `Value` CHAR(1), `Intvalue` INT PRIMARY KEY `Property`)" );
...
ok( check_record( rec, 2, "Value"), "wrong record type\n");
- ok( check_record( rec, 3, "IntValue"), "wrong record type\n");
These changes don't agree on the case of 'Intvalue', causing this test to fail. It would be interesting to see if the remaining column types also need the extra flag.
-Hans