msi: Return MSICONDITION_NONE in MsiDatabaseIsTablePersistent if the table doesn't exist.

This commit is contained in:
James Hawkins 2007-04-21 02:33:10 -05:00 committed by Alexandre Julliard
parent 68401a151a
commit d677bd7f3b
3 changed files with 6 additions and 3 deletions

View File

@ -563,7 +563,7 @@ extern const WCHAR *msi_string_lookup_id( string_table *st, UINT id );
extern UINT msi_string_get_codepage( string_table *st );
extern BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name );
extern BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name );
extern MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table );
extern UINT read_raw_stream_data( MSIDATABASE*, LPCWSTR stname,

View File

@ -1027,7 +1027,7 @@ static UINT get_tablecolumns( MSIDATABASE *db,
}
/* try to find the table name in the _Tables table */
BOOL TABLE_Exists( MSIDATABASE *db, LPWSTR name )
BOOL TABLE_Exists( MSIDATABASE *db, LPCWSTR name )
{
UINT r, table_id = 0, i, count;
MSITABLE *table = NULL;
@ -1716,6 +1716,9 @@ MSICONDITION MSI_DatabaseIsTablePersistent( MSIDATABASE *db, LPCWSTR table )
if (!table)
return MSICONDITION_ERROR;
if (!TABLE_Exists( db, table ))
return MSICONDITION_NONE;
return MSICONDITION_FALSE;
}

View File

@ -2648,10 +2648,10 @@ static void test_temporary_table(void)
cond = MsiDatabaseIsTablePersistent(hdb, "_Columns");
ok( cond == MSICONDITION_NONE, "wrong return condition\n");
}
cond = MsiDatabaseIsTablePersistent(hdb, "_Streams");
ok( cond == MSICONDITION_NONE, "wrong return condition\n");
}
query = "CREATE TABLE `P` ( `B` SHORT NOT NULL, `C` CHAR(255) PRIMARY KEY `C`)";
r = run_query(hdb, 0, query);