Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0a81fbfa
Commit
0a81fbfa
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 LONGCHAR column data type.
parent
508028ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sql.y
dlls/msi/sql.y
+1
-1
db.c
dlls/msi/tests/db.c
+2
-2
No files found.
dlls/msi/sql.y
View file @
0a81fbfa
...
@@ -359,7 +359,7 @@ data_type:
...
@@ -359,7 +359,7 @@ data_type:
}
}
| TK_LONGCHAR
| TK_LONGCHAR
{
{
$$ =
2
;
$$ =
MSITYPE_STRING | 0x400
;
}
}
| TK_SHORT
| TK_SHORT
{
{
...
...
dlls/msi/tests/db.c
View file @
0a81fbfa
...
@@ -1148,7 +1148,7 @@ static void test_viewgetcolumninfo(void)
...
@@ -1148,7 +1148,7 @@ static void test_viewgetcolumninfo(void)
ok
(
check_record
(
rec
,
4
,
"I2"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
4
,
"I2"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
5
,
"I2"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
5
,
"I2"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
6
,
"I4"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
6
,
"I4"
),
"wrong record type
\n
"
);
todo_wine
ok
(
check_record
(
rec
,
7
,
"S0"
),
"wrong record type
\n
"
);
ok
(
check_record
(
rec
,
7
,
"S0"
),
"wrong record type
\n
"
);
MsiCloseHandle
(
rec
);
MsiCloseHandle
(
rec
);
...
@@ -1159,7 +1159,7 @@ static void test_viewgetcolumninfo(void)
...
@@ -1159,7 +1159,7 @@ static void test_viewgetcolumninfo(void)
ok
(
0x1502
==
get_columns_table_type
(
hdb
,
"Properties"
,
4
),
"_columns table wrong
\n
"
);
ok
(
0x1502
==
get_columns_table_type
(
hdb
,
"Properties"
,
4
),
"_columns table wrong
\n
"
);
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
"
);
ok
(
0x1104
==
get_columns_table_type
(
hdb
,
"Properties"
,
6
),
"_columns table wrong
\n
"
);
todo_wine
ok
(
0x1d00
==
get_columns_table_type
(
hdb
,
"Properties"
,
7
),
"_columns table wrong
\n
"
);
ok
(
0x1d00
==
get_columns_table_type
(
hdb
,
"Properties"
,
7
),
"_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