Commit 15cb7290 authored by Hib Eris's avatar Hib Eris Committed by Alexandre Julliard

msi: Fix INT column data type.

parent fa8f8a3e
...@@ -367,7 +367,7 @@ data_type: ...@@ -367,7 +367,7 @@ data_type:
} }
| TK_INT | TK_INT
{ {
$$ = 2; $$ = 2 | 0x400;
} }
| TK_LONG | TK_LONG
{ {
......
...@@ -1144,7 +1144,7 @@ static void test_viewgetcolumninfo(void) ...@@ -1144,7 +1144,7 @@ static void test_viewgetcolumninfo(void)
/* check the type in _Columns */ /* check the type in _Columns */
ok( 0x3dff == get_columns_table_type(hdb, "Properties", 1 ), "_columns table wrong\n"); ok( 0x3dff == get_columns_table_type(hdb, "Properties", 1 ), "_columns table wrong\n");
ok( 0x1d01 == get_columns_table_type(hdb, "Properties", 2 ), "_columns table wrong\n"); ok( 0x1d01 == get_columns_table_type(hdb, "Properties", 2 ), "_columns table wrong\n");
todo_wine ok( 0x1502 == get_columns_table_type(hdb, "Properties", 3 ), "_columns table wrong\n"); ok( 0x1502 == get_columns_table_type(hdb, "Properties", 3 ), "_columns table wrong\n");
/* now try the names */ /* now try the names */
rec = get_column_info( hdb, "select * from `Properties`", MSICOLINFO_NAMES ); rec = get_column_info( hdb, "select * from `Properties`", MSICOLINFO_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