You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2026. It is now read-only.
Setup db with table which contains a field with a definition as follows:
fieldName ARRAY<STRING(32)>
Query said table (I'm doing this in queries with a LIMIT 1000 on them), and call .toJSON() on each returned row
Use some validation code like such to detect fields not being converted
if(arrayField&&arrayField.length>0&&arrayField.some(each=>typeofeach==='object')){console.log('Object in arrayField');}
I've added the aforementioned logs to a task and API I suspected was being impacted by this issue and get rows which look like the following next to converted fields:
Environment details
@google-cloud/spannerversion: v1.4.1Steps to reproduce
LIMIT 1000on them), and call.toJSON()on each returned rowI've added the aforementioned logs to a task and API I suspected was being impacted by this issue and get rows which look like the following next to converted fields:
However a fair amount of requests are still succeeding so this issue does not appear to be constant.