[Groonga-commit] groonga/grnci at 1ac41b2 [master] Update DB.LogicalRangeFilter to return an error.

Back to archive index

Susumu Yata null+****@clear*****
Tue Sep 12 12:31:25 JST 2017


Susumu Yata	2017-09-12 12:31:25 +0900 (Tue, 12 Sep 2017)

  New Revision: 1ac41b2c5daae95d2ab75b9a7e13f53e1528dbd1
  https://github.com/groonga/grnci/commit/1ac41b2c5daae95d2ab75b9a7e13f53e1528dbd1

  Message:
    Update DB.LogicalRangeFilter to return an error.

  Modified files:
    v2/db.go

  Modified: v2/db.go (+2 -2)
===================================================================
--- v2/db.go    2017-09-12 12:27:10 +0900 (cbb8f67)
+++ v2/db.go    2017-09-12 12:31:25 +0900 (dfb9878)
@@ -733,9 +733,9 @@ func (db *DB) LogicalParameters(rangeIndex string) (*DBLogicalParameters, Respon
 }
 
 // LogicalRangeFilter executes logical_range_filter.
-func (db *DB) LogicalRangeFilter() (bool, Response, error) {
+func (db *DB) LogicalRangeFilter() error {
 	// TODO
-	return false, nil, nil
+	return NewError(OperationError, "Not implemented yet.", nil)
 }
 
 // DBLogicalSelectOptions stores options for DB.LogicalSelect.
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20170912/2895d012/attachment-0001.htm 



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