Uploaded image for project: 'Couchbase Server'
  1. Couchbase Server
  2. MB-13650

View indexes defined with where clause do not return correct results.

    XMLWordPrintable

Details

    • Bug
    • Resolution: Fixed
    • Critical
    • 4.0.0
    • 4.0.0
    • query
    • Security Level: Public
    • Untriaged
    • Unknown

    Description

      1. create sample buckets - beer-sample and gamesim-sample
      2. Do not create a primary index yet on the buckets.
      3. create index on gamesim-sample(hitpoints)
      cbq> create index index_hitpoints on `gamesim-sample`(hitpoints) where hitpoints > 23000;
      {
      "requestID": "7fdab378-e068-45ef-bbd1-5bfdcc2d1b34",
      "signature": null,
      "results": [
      ],
      "status": "success",
      "metrics":

      { "elapsedTime": "5.380110398s", "executionTime": "5.379663423s", "resultCount": 0, "resultSize": 0 }

      }

      4. Issue a select on the bucket, to check if certain entries exist . Check screenshot for a valid entry of a record w/ hitpoints>23000.
      Check below the result set is incorrect.

      cbq> select * from `gamesim-sample` where hitpoints > 23000;
      {
      "requestID": "88d9766b-c610-40bb-b8d7-ee3cc34b1c15",
      "signature":

      { "*": "*" }

      ,
      "results": [
      ],
      "status": "success",
      "metrics":

      { "elapsedTime": "7.116931ms", "executionTime": "6.73474ms", "resultCount": 0, "resultSize": 0 }

      }

      5. Check for exact record hitpoints = 238322, select does not return the results.

      cbq> select * from `gamesim-sample` where hitpoints =23832;
      {
      "requestID": "65566b23-68ea-4265-94c3-ed0e9facd2d6",
      "signature":

      { "*": "*" }

      ,
      "results": [
      ],
      "status": "success",
      "metrics":

      { "elapsedTime": "5.729986ms", "executionTime": "5.271444ms", "resultCount": 0, "resultSize": 0 }

      }

      The query.log shows some odd output, not sure how to parse/interpret it yet.
      _time=2015-02-26T09:30:48-08:00 _level=INFO _msg=Request View: http://127.0.0.1:8092/gamesim-sample/_design/ddl_index_hitpoints/_view/index_hitpoints?limit=1001&stale=ok&startkey=%5B%5B128%2C23000%5D%5D&startkey_docid=%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF
      _time=2015-02-26T09:30:48-08:00 _level=INFO _msg=Number of entries fetched from the index 0
      _time=2015-02-26T09:31:17-08:00 _level=INFO _msg=Refreshing pool default
      _time=2015-02-26T09:31:17-08:00 _level=INFO _msg= Checking keyspace beer-sample
      _time=2015-02-26T09:31:17-08:00 _level=INFO _msg= Checking keyspace default
      _time=2015-02-26T09:31:17-08:00 _level=INFO _msg= Checking keyspace gamesim-sample
      _time=2015-02-26T09:31:19-08:00 _level=INFO _msg=Authenticating for keyspace gamesim-sample
      _time=2015-02-26T09:31:19-08:00 _level=INFO _msg= Authenticating for bucket gamesim-sample username gamesim-sample password
      _time=2015-02-26T09:31:19-08:00 _level=INFO _msg=Request View: http://127.0.0.1:8092/gamesim-sample/_design/ddl_%23primary/_view/%23primary?limit=1001&stale=ok
      _time=2015-02-26T09:31:19-08:00 _level=INFO _msg=Number of entries fetched from the index 586
      _time=2015-02-26T09:31:58-08:00 _level=INFO _msg=Authenticating for keyspace gamesim-sample
      _time=2015-02-26T09:31:58-08:00 _level=INFO _msg= Authenticating for bucket gamesim-sample username gamesim-sample password
      _time=2015-02-26T09:31:58-08:00 _level=INFO _msg=Request View: http://127.0.0.1:8092/gamesim-sample/_design/ddl_index_hitpoints/_view/index_hitpoints?limit=1001&stale=ok&startkey=%5B%5B128%2C2200%5D%5D&startkey_docid=%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF%FF
      2015/02/26 09:31:58 Warning: Finalizing a bucket with active connections.
      2015/02/26 09

      Attachments

        Issue Links

          Activity

            People

              manik Manik Taneja (Inactive)
              ketaki Ketaki Gangal (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                PagerDuty