Commit c6124db9 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

msi: Use a simpler algorithm for joins.

parent 8fc5fbe7
...@@ -39,9 +39,7 @@ typedef struct tagMSIJOINVIEW ...@@ -39,9 +39,7 @@ typedef struct tagMSIJOINVIEW
MSIDATABASE *db; MSIDATABASE *db;
MSIVIEW *left, *right; MSIVIEW *left, *right;
UINT left_count, right_count; UINT left_count, right_count;
UINT left_key, right_key; UINT left_rows, right_rows;
UINT *pairs;
UINT pair_count;
} MSIJOINVIEW; } MSIJOINVIEW;
static UINT JOIN_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val ) static UINT JOIN_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *val )
...@@ -57,18 +55,18 @@ static UINT JOIN_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *v ...@@ -57,18 +55,18 @@ static UINT JOIN_fetch_int( struct tagMSIVIEW *view, UINT row, UINT col, UINT *v
if( (col==0) || (col>(jv->left_count + jv->right_count)) ) if( (col==0) || (col>(jv->left_count + jv->right_count)) )
return ERROR_FUNCTION_FAILED; return ERROR_FUNCTION_FAILED;
if( row >= jv->pair_count ) if( row >= (jv->left_rows * jv->right_rows) )
return ERROR_FUNCTION_FAILED; return ERROR_FUNCTION_FAILED;
if( col <= jv->left_count ) if( col <= jv->left_count )
{ {
table = jv->left; table = jv->left;
row = jv->pairs[ row*2 ]; row = (row/jv->right_rows);
} }
else else
{ {
table = jv->right; table = jv->right;
row = jv->pairs[ row*2 + 1 ]; row = (row % jv->right_rows);
col -= jv->left_count; col -= jv->left_count;
} }
...@@ -88,115 +86,28 @@ static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStr ...@@ -88,115 +86,28 @@ static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStr
if( (col==0) || (col>(jv->left_count + jv->right_count)) ) if( (col==0) || (col>(jv->left_count + jv->right_count)) )
return ERROR_FUNCTION_FAILED; return ERROR_FUNCTION_FAILED;
if( row >= jv->left_rows * jv->right_rows )
return ERROR_FUNCTION_FAILED;
if( row <= jv->left_count ) if( row <= jv->left_count )
{ {
table = jv->left; table = jv->left;
row = jv->pairs[ row*2 ]; row = (row/jv->right_rows);
} }
else else
{ {
table = jv->right; table = jv->right;
row = jv->pairs[ row*2 + 1 ]; row = (row % jv->right_rows);
col -= jv->left_count; col -= jv->left_count;
} }
return table->ops->fetch_stream( table, row, col, stm ); return table->ops->fetch_stream( table, row, col, stm );
} }
static int join_key_compare(const void *l, const void *r)
{
const UINT *left = l, *right = r;
if (left[1] < right[1])
return -1;
if (left[1] == right[1])
return 0;
return 1;
}
static UINT join_load_key_column( MSIJOINVIEW *jv, MSIVIEW *table, UINT column,
UINT **pdata, UINT *pcount )
{
UINT r, i, count = 0, *data = NULL;
r = table->ops->get_dimensions( table, &count, NULL );
if( r != ERROR_SUCCESS )
return r;
if (!count)
goto end;
data = msi_alloc( count * 2 * sizeof (UINT) );
if (!data)
return ERROR_SUCCESS;
for (i=0; i<count; i++)
{
data[i*2] = i;
r = table->ops->fetch_int( table, i, column, &data[i*2+1] );
if (r != ERROR_SUCCESS)
ERR("fetch data (%u,%u) failed\n", i, column);
}
qsort( data, count, 2 * sizeof (UINT), join_key_compare );
end:
*pdata = data;
*pcount = count;
return ERROR_SUCCESS;
}
static UINT join_match( UINT *ldata, UINT lcount,
UINT *rdata, UINT rcount,
UINT **ppairs, UINT *ppair_count )
{
UINT *pairs;
UINT n, i, j;
TRACE("left %u right %u\n", rcount, lcount);
/* there can be at most max(lcount, rcount) matches */
if (lcount > rcount)
n = lcount;
else
n = rcount;
pairs = msi_alloc( n * 2 * sizeof(UINT) );
if (!pairs)
return ERROR_OUTOFMEMORY;
for (n=0, i=0, j=0; i<lcount && j<rcount; )
{
/* values match... store the row numbers */
if (ldata[i*2+1] == rdata[j*2+1])
{
pairs[n*2] = ldata[i*2];
pairs[n*2+1] = rdata[j*2];
n++;
if ( ldata[i*2+3] < rdata[j*2+3])
i++;
else
j++;
}
/* values differ... move along */
else if (ldata[i*2+1] < rdata[j*2+1])
i++;
else
j++;
}
*ppairs = pairs;
*ppair_count = n;
return ERROR_SUCCESS;
}
static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record ) static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record )
{ {
MSIJOINVIEW *jv = (MSIJOINVIEW*)view; MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
UINT r, *ldata = NULL, *rdata = NULL, lcount = 0, rcount = 0; UINT r, *ldata = NULL, *rdata = NULL;
TRACE("%p %p\n", jv, record); TRACE("%p %p\n", jv, record);
...@@ -211,15 +122,20 @@ static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record ) ...@@ -211,15 +122,20 @@ static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record )
if (r != ERROR_SUCCESS) if (r != ERROR_SUCCESS)
return r; return r;
r = join_load_key_column( jv, jv->left, jv->left_key, &ldata, &lcount ); /* get the number of rows in each table */
if (r != ERROR_SUCCESS) r = jv->left->ops->get_dimensions( jv->left, &jv->left_rows, NULL );
return r; if( r != ERROR_SUCCESS )
{
r = join_load_key_column( jv, jv->right, jv->right_key, &rdata, &rcount ); ERR("can't get left table dimensions\n");
if (r != ERROR_SUCCESS)
goto end; goto end;
}
r = join_match( ldata, lcount, rdata, rcount, &jv->pairs, &jv->pair_count ); r = jv->right->ops->get_dimensions( jv->right, &jv->right_rows, NULL );
if( r != ERROR_SUCCESS )
{
ERR("can't get right table dimensions\n");
goto end;
}
end: end:
msi_free( ldata ); msi_free( ldata );
...@@ -257,7 +173,7 @@ static UINT JOIN_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols ...@@ -257,7 +173,7 @@ static UINT JOIN_get_dimensions( struct tagMSIVIEW *view, UINT *rows, UINT *cols
if( !jv->left || !jv->right ) if( !jv->left || !jv->right )
return ERROR_FUNCTION_FAILED; return ERROR_FUNCTION_FAILED;
*rows = jv->pair_count; *rows = jv->left_rows * jv->right_rows;
} }
return ERROR_SUCCESS; return ERROR_SUCCESS;
...@@ -308,9 +224,6 @@ static UINT JOIN_delete( struct tagMSIVIEW *view ) ...@@ -308,9 +224,6 @@ static UINT JOIN_delete( struct tagMSIVIEW *view )
jv->right->ops->delete( jv->right ); jv->right->ops->delete( jv->right );
jv->right = NULL; jv->right = NULL;
msi_free( jv->pairs );
jv->pairs = NULL;
msi_free( jv ); msi_free( jv );
return ERROR_SUCCESS; return ERROR_SUCCESS;
...@@ -341,48 +254,8 @@ static const MSIVIEWOPS join_ops = ...@@ -341,48 +254,8 @@ static const MSIVIEWOPS join_ops =
JOIN_find_matching_rows JOIN_find_matching_rows
}; };
/*
* join_check_condition
*
* This is probably overly strict about what kind of condition we need
* for a join query.
*/
static UINT join_check_condition(MSIJOINVIEW *jv, struct expr *cond)
{
UINT r;
/* assume that we have `KeyColumn` = `SubkeyColumn` */
if ( cond->type != EXPR_COMPLEX )
return ERROR_FUNCTION_FAILED;
if ( cond->u.expr.op != OP_EQ )
return ERROR_FUNCTION_FAILED;
if ( cond->u.expr.left->type != EXPR_COLUMN )
return ERROR_FUNCTION_FAILED;
if ( cond->u.expr.right->type != EXPR_COLUMN )
return ERROR_FUNCTION_FAILED;
/* make sure both columns exist */
r = VIEW_find_column( jv->left, cond->u.expr.left->u.column, &jv->left_key );
if (r != ERROR_SUCCESS)
return ERROR_FUNCTION_FAILED;
r = VIEW_find_column( jv->right, cond->u.expr.right->u.column, &jv->right_key );
if (r != ERROR_SUCCESS)
return ERROR_FUNCTION_FAILED;
TRACE("left %s (%u) right %s (%u)\n",
debugstr_w(cond->u.expr.left->u.column), jv->left_key,
debugstr_w(cond->u.expr.right->u.column), jv->right_key);
return ERROR_SUCCESS;
}
UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view, UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view,
LPCWSTR left, LPCWSTR right, LPCWSTR left, LPCWSTR right )
struct expr *cond )
{ {
MSIJOINVIEW *jv = NULL; MSIJOINVIEW *jv = NULL;
UINT r = ERROR_SUCCESS; UINT r = ERROR_SUCCESS;
...@@ -427,13 +300,6 @@ UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view, ...@@ -427,13 +300,6 @@ UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view,
goto end; goto end;
} }
r = join_check_condition( jv, cond );
if( r != ERROR_SUCCESS )
{
ERR("can't get join condition\n");
goto end;
}
*view = &jv->view; *view = &jv->view;
return ERROR_SUCCESS; return ERROR_SUCCESS;
......
...@@ -118,8 +118,7 @@ UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **, LPWSTR table, ...@@ -118,8 +118,7 @@ UINT UPDATE_CreateView( MSIDATABASE *db, MSIVIEW **, LPWSTR table,
UINT DELETE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table ); UINT DELETE_CreateView( MSIDATABASE *db, MSIVIEW **view, MSIVIEW *table );
UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view, UINT JOIN_CreateView( MSIDATABASE *db, MSIVIEW **view,
LPCWSTR left, LPCWSTR right, LPCWSTR left, LPCWSTR right );
struct expr *cond );
UINT ALTER_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR name, int hold ); UINT ALTER_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR name, int hold );
......
...@@ -103,7 +103,7 @@ static struct expr * EXPR_wildcard( void *info ); ...@@ -103,7 +103,7 @@ static struct expr * EXPR_wildcard( void *info );
%type <string> table id %type <string> table id
%type <column_list> selcollist column column_and_type column_def table_def %type <column_list> selcollist column column_and_type column_def table_def
%type <column_list> column_assignment update_assign_list constlist %type <column_list> column_assignment update_assign_list constlist
%type <query> query multifrom from fromtable selectfrom unorderedsel %type <query> query from fromtable selectfrom unorderedsel
%type <query> oneupdate onedelete oneselect onequery onecreate oneinsert onealter %type <query> oneupdate onedelete oneselect onequery onecreate oneinsert onealter
%type <expr> expr val column_val const_val %type <expr> expr val column_val const_val
%type <column_type> column_type data_type data_type_l data_count %type <column_type> column_type data_type data_type_l data_count
...@@ -384,7 +384,7 @@ unorderedsel: ...@@ -384,7 +384,7 @@ unorderedsel:
; ;
selectfrom: selectfrom:
selcollist multifrom selcollist from
{ {
SQL_input* sql = (SQL_input*) info; SQL_input* sql = (SQL_input*) info;
UINT r; UINT r;
...@@ -416,20 +416,6 @@ selcollist: ...@@ -416,20 +416,6 @@ selcollist:
} }
; ;
multifrom:
from
| TK_FROM table TK_COMMA table TK_WHERE expr
{
SQL_input* sql = (SQL_input*) info;
UINT r;
/* only support inner joins on two tables */
r = JOIN_CreateView( sql->db, &$$, $2, $4, $6 );
if( r != ERROR_SUCCESS )
YYABORT;
}
;
from: from:
fromtable fromtable
| fromtable TK_WHERE expr | fromtable TK_WHERE expr
...@@ -458,6 +444,16 @@ fromtable: ...@@ -458,6 +444,16 @@ fromtable:
if( r != ERROR_SUCCESS || !$$ ) if( r != ERROR_SUCCESS || !$$ )
YYABORT; YYABORT;
} }
| TK_FROM table TK_COMMA table
{
SQL_input* sql = (SQL_input*) info;
UINT r;
/* only support inner joins on two tables */
r = JOIN_CreateView( sql->db, &$$, $2, $4 );
if( r != ERROR_SUCCESS )
YYABORT;
}
; ;
expr: expr:
......
...@@ -2221,7 +2221,6 @@ static void test_join(void) ...@@ -2221,7 +2221,6 @@ static void test_join(void)
} }
ok( i == 5, "Expected 5 rows, got %d\n", i ); ok( i == 5, "Expected 5 rows, got %d\n", i );
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
MsiViewClose(hview); MsiViewClose(hview);
...@@ -2231,16 +2230,10 @@ static void test_join(void) ...@@ -2231,16 +2230,10 @@ static void test_join(void)
"WHERE FeatureComponents.Component_=Component.Component " "WHERE FeatureComponents.Component_=Component.Component "
"AND (Feature_='nasalis') ORDER BY Feature_"; "AND (Feature_='nasalis') ORDER BY Feature_";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r );
}
i = 0; i = 0;
data_correct = TRUE; data_correct = TRUE;
...@@ -2267,15 +2260,8 @@ static void test_join(void) ...@@ -2267,15 +2260,8 @@ static void test_join(void)
ok( data_correct, "data returned in the wrong order\n"); ok( data_correct, "data returned in the wrong order\n");
todo_wine
{
ok( i == 2, "Expected 2 rows, got %d\n", i ); ok( i == 2, "Expected 2 rows, got %d\n", i );
}
todo_wine
{
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
...@@ -2356,7 +2342,6 @@ static void test_join(void) ...@@ -2356,7 +2342,6 @@ static void test_join(void)
ok( data_correct, "data returned in the wrong order\n"); ok( data_correct, "data returned in the wrong order\n");
ok( i == 1, "Expected 1 rows, got %d\n", i ); ok( i == 1, "Expected 1 rows, got %d\n", i );
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
MsiViewClose(hview); MsiViewClose(hview);
...@@ -2368,16 +2353,10 @@ static void test_join(void) ...@@ -2368,16 +2353,10 @@ static void test_join(void)
"AND `FeatureComponents`.`Component_` = 'maxilla' " "AND `FeatureComponents`.`Component_` = 'maxilla' "
"ORDER BY `Feature_`"; "ORDER BY `Feature_`";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r );
}
i = 0; i = 0;
data_correct = TRUE; data_correct = TRUE;
...@@ -2401,17 +2380,10 @@ static void test_join(void) ...@@ -2401,17 +2380,10 @@ static void test_join(void)
i++; i++;
MsiCloseHandle(hrec); MsiCloseHandle(hrec);
} }
ok( data_correct, "data returned in the wrong order\n"); todo_wine ok( data_correct, "data returned in the wrong order\n");
todo_wine
{
ok( i == 1, "Expected 1 rows, got %d\n", i ); ok( i == 1, "Expected 1 rows, got %d\n", i );
}
todo_wine
{
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
...@@ -2421,10 +2393,7 @@ static void test_join(void) ...@@ -2421,10 +2393,7 @@ static void test_join(void)
"WHERE `Component` = 'zygomatic' " "WHERE `Component` = 'zygomatic' "
"ORDER BY `Feature_`"; "ORDER BY `Feature_`";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine todo_wine
...@@ -2460,11 +2429,7 @@ static void test_join(void) ...@@ -2460,11 +2429,7 @@ static void test_join(void)
{ {
ok( i == 6, "Expected 6 rows, got %d\n", i ); ok( i == 6, "Expected 6 rows, got %d\n", i );
} }
todo_wine
{
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
...@@ -2475,16 +2440,10 @@ static void test_join(void) ...@@ -2475,16 +2440,10 @@ static void test_join(void)
"AND `Feature_` = 'nasalis' " "AND `Feature_` = 'nasalis' "
"ORDER BY `Feature_`"; "ORDER BY `Feature_`";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r );
}
i = 0; i = 0;
data_correct = TRUE; data_correct = TRUE;
...@@ -2510,15 +2469,8 @@ static void test_join(void) ...@@ -2510,15 +2469,8 @@ static void test_join(void)
} }
ok( data_correct, "data returned in the wrong order\n"); ok( data_correct, "data returned in the wrong order\n");
todo_wine
{
ok( i == 3, "Expected 3 rows, got %d\n", i ); ok( i == 3, "Expected 3 rows, got %d\n", i );
}
todo_wine
{
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
...@@ -2526,16 +2478,10 @@ static void test_join(void) ...@@ -2526,16 +2478,10 @@ static void test_join(void)
query = "SELECT `StdDlls`.`File`, `Binary`.`Data` " query = "SELECT `StdDlls`.`File`, `Binary`.`Data` "
"FROM `StdDlls`, `Binary` "; "FROM `StdDlls`, `Binary` ";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r );
}
i = 0; i = 0;
data_correct = TRUE; data_correct = TRUE;
...@@ -2560,28 +2506,19 @@ static void test_join(void) ...@@ -2560,28 +2506,19 @@ static void test_join(void)
MsiCloseHandle(hrec); MsiCloseHandle(hrec);
} }
ok( data_correct, "data returned in the wrong order\n"); todo_wine ok( data_correct, "data returned in the wrong order\n");
todo_wine
{
ok( i == 6, "Expected 6 rows, got %d\n", i ); ok( i == 6, "Expected 6 rows, got %d\n", i );
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
query = "SELECT * FROM `StdDlls`, `Binary` "; query = "SELECT * FROM `StdDlls`, `Binary` ";
r = MsiDatabaseOpenView(hdb, query, &hview); r = MsiDatabaseOpenView(hdb, query, &hview);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to open view: %d\n", r );
}
r = MsiViewExecute(hview, 0); r = MsiViewExecute(hview, 0);
todo_wine
{
ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r ); ok( r == ERROR_SUCCESS, "failed to execute view: %d\n", r );
}
i = 0; i = 0;
data_correct = TRUE; data_correct = TRUE;
...@@ -2617,13 +2554,10 @@ static void test_join(void) ...@@ -2617,13 +2554,10 @@ static void test_join(void)
i++; i++;
MsiCloseHandle(hrec); MsiCloseHandle(hrec);
} }
ok( data_correct, "data returned in the wrong order\n"); todo_wine ok( data_correct, "data returned in the wrong order\n");
todo_wine
{
ok( i == 6, "Expected 6 rows, got %d\n", i ); ok( i == 6, "Expected 6 rows, got %d\n", i );
ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r ); ok( r == ERROR_NO_MORE_ITEMS, "expected no more items: %d\n", r );
}
MsiViewClose(hview); MsiViewClose(hview);
MsiCloseHandle(hview); MsiCloseHandle(hview);
......
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