alxndrsn commented on issue #9094:
URL: https://github.com/apache/pouchdb/issues/9094#issuecomment-3555821843

   This got me intrigued.  Here's a minimal repro:
   
   ```js
   const db = new PouchDB('db-' + Math.random());
   await db.post({ _attachments:{ 'simple.txt':{ content_type:'text/plain', 
data:'helo' } } });
   const { rows, total_rows } = await db.allDocs();
   console.log(total_rows, rows.length);
   ```
   
   Looks like a bug in the `idb` adapter.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to