Remove compile warning messages
[platform/core/appfw/pkgmgr-info.git] / src / pkgmgrinfo_private.c
index 58ee0e7..e7a8faf 100644 (file)
@@ -571,8 +571,6 @@ static int __db_busy_handler(void *data, int count)
 int __open_db(const char *path, sqlite3 **db, int flags)
 {
        int ret;
-       int persist_wal = 1;
-       int no_checkpoint = 1;
 
        ret = sqlite3_open_v2(path, db, flags, NULL);
        if (ret != SQLITE_OK) {
@@ -588,32 +586,6 @@ int __open_db(const char *path, sqlite3 **db, int flags)
                return ret;
        }
 
-       ret = sqlite3_file_control(*db, NULL,
-                       SQLITE_FCNTL_PERSIST_WAL, &persist_wal);
-       if (ret != SQLITE_OK) {
-               _LOGE("failed to sqlite3_file_control: %s",
-                               sqlite3_errmsg(*db));
-               sqlite3_close_v2(*db);
-               return ret;
-       }
-
-       ret = sqlite3_wal_autocheckpoint(*db, 0);
-       if (ret != SQLITE_OK) {
-               _LOGE("failed to sqlite3_wal_autocheckpoint: %s",
-                               sqlite3_errmsg(*db));
-               sqlite3_close_v2(*db);
-               return ret;
-       }
-
-       ret = sqlite3_db_config(*db, SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE,
-                                                       &no_checkpoint);
-       if (ret != SQLITE_OK) {
-               _LOGE("failed to execute sqlite3_db_config: %s",
-                               sqlite3_errmsg(*db));
-               sqlite3_close_v2(*db);
-               return ret;
-       }
-
        return ret;
 }