Commit 5e829d13 authored by Hib Eris's avatar Hib Eris Committed by Alexandre Julliard

msi: Fix SHORT column data type.

parent 40786618
......@@ -363,7 +363,7 @@ data_type:
}
| TK_SHORT
{
$$ = 2;
$$ = 2 | 0x400;
}
| TK_INT
{
......
......@@ -1155,7 +1155,7 @@ static void test_viewgetcolumninfo(void)
ok( 0x1d01 == get_columns_table_type(hdb, "Properties", 2 ), "_columns table wrong\n");
ok( 0x1502 == get_columns_table_type(hdb, "Properties", 3 ), "_columns table wrong\n");
ok( 0x1502 == get_columns_table_type(hdb, "Properties", 4 ), "_columns table wrong\n");
todo_wine ok( 0x1502 == get_columns_table_type(hdb, "Properties", 5 ), "_columns table wrong\n");
ok( 0x1502 == get_columns_table_type(hdb, "Properties", 5 ), "_columns table wrong\n");
ok( 0x1104 == get_columns_table_type(hdb, "Properties", 6 ), "_columns table wrong\n");
/* now try the names */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment