[Groonga-commit] groonga/grnxx at 1f8e0fa [master] Use the unified DBOptions.

Back to archive index

susumu.yata null+****@clear*****
Fri May 30 16:34:10 JST 2014


susumu.yata	2014-05-30 16:34:10 +0900 (Fri, 30 May 2014)

  New Revision: 1f8e0fa176a7a78f275b9711a82aa01a5a69e27d
  https://github.com/groonga/grnxx/commit/1f8e0fa176a7a78f275b9711a82aa01a5a69e27d

  Message:
    Use the unified DBOptions.

  Modified files:
    new-interface/db.hpp

  Modified: new-interface/db.hpp (+3 -3)
===================================================================
--- new-interface/db.hpp    2014-05-30 16:33:07 +0900 (76c356f)
+++ new-interface/db.hpp    2014-05-30 16:34:10 +0900 (0a14658)
@@ -115,7 +115,7 @@ class DB {
   // - 作業領域が確保できない.
   // - ディスクの空き容量が足りない.
   virtual bool save(const char *path,
-                    const DBSaveOptions &options,
+                    const DBOptions &options,
                     Error *error) const = 0;
 };
 
@@ -137,7 +137,7 @@ class DB {
 // - 指定された名前のファイルがデータベースのファイルではない.
 // - データベースを構成するファイルが存在しない.
 std::unique_ptr<DB> open_db(const char *path,
-                            const OpenDBOptions &options,
+                            const DBOptions &options,
                             Error *error);
 
 // データベースを削除する.
@@ -152,7 +152,7 @@ std::unique_ptr<DB> open_db(const char *path,
 //  - 一部のファイルが欠けていても強制的に残りを削除するオプションは欲しい.
 //  - データベースを開かずにパスのみから推論して削除したいケースもありうる.
 // - ファイルの削除に失敗する.
-bool drop_db(const char *path, const DropDBOptions &options, Error *error);
+bool drop_db(const char *path, const DBOptions &options, Error *error);
 
 }  // namespace grnxx
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index