[Groonga-commit] groonga/grnxx at ad4ea4f [master] Remove an argument "reference_table" from the constructor of ColumnBase.

Back to archive index

susumu.yata null+****@clear*****
Tue Dec 16 10:49:31 JST 2014


susumu.yata	2014-11-06 18:07:34 +0900 (Thu, 06 Nov 2014)

  New Revision: ad4ea4f25deb127df4bc64c5e235b7bf373884a7
  https://github.com/groonga/grnxx/commit/ad4ea4f25deb127df4bc64c5e235b7bf373884a7

  Message:
    Remove an argument "reference_table" from the constructor of ColumnBase.

  Modified files:
    lib/grnxx/impl/column/base.cpp
    lib/grnxx/impl/column/base.hpp

  Modified: lib/grnxx/impl/column/base.cpp (+2 -3)
===================================================================
--- lib/grnxx/impl/column/base.cpp    2014-11-06 17:21:21 +0900 (7fdfba3)
+++ lib/grnxx/impl/column/base.cpp    2014-11-06 18:07:34 +0900 (caf5474)
@@ -9,13 +9,12 @@ namespace impl {
 
 ColumnBase::ColumnBase(Table *table,
                        const String &name,
-                       DataType data_type,
-                       Table *reference_table)
+                       DataType data_type)
     : ColumnInterface(),
       table_(table),
       name_(name),
       data_type_(data_type),
-      reference_table_(reference_table),
+      reference_table_(nullptr),
       is_key_(false),
       indexes_() {}
 

  Modified: lib/grnxx/impl/column/base.hpp (+1 -4)
===================================================================
--- lib/grnxx/impl/column/base.hpp    2014-11-06 17:21:21 +0900 (13b0325)
+++ lib/grnxx/impl/column/base.hpp    2014-11-06 18:07:34 +0900 (ec8cb58)
@@ -19,10 +19,7 @@ class ColumnBase : public ColumnInterface {
  public:
   // -- Public API (grnxx/column.hpp) --
 
-  ColumnBase(Table *table,
-             const String &name,
-             DataType data_type,
-             Table *reference_table = nullptr);
+  ColumnBase(Table *table, const String &name, DataType data_type);
   virtual ~ColumnBase();
 
   TableInterface *table() const;
-------------- next part --------------
HTML����������������������������...
다운로드 



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