Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
15cb7290
Commit
15cb7290
authored
Apr 25, 2009
by
Hib Eris
Committed by
Alexandre Julliard
Apr 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix INT column data type.
parent
fa8f8a3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql.y
dlls/msi/sql.y
+1
-1
db.c
dlls/msi/tests/db.c
+1
-1
No files found.
dlls/msi/sql.y
View file @
15cb7290
...
@@ -367,7 +367,7 @@ data_type:
...
@@ -367,7 +367,7 @@ data_type:
}
}
| TK_INT
| TK_INT
{
{
$$ = 2;
$$ = 2
| 0x400
;
}
}
| TK_LONG
| TK_LONG
{
{
...
...
dlls/msi/tests/db.c
View file @
15cb7290
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment