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 Feb 7, 2026. It is now read-only.
Environment details
@google-cloud/bigqueryversion: 6.1.0Steps to reproduce
Object.create(null)new BigQuery().dataset('...').table('...').createInsertStream()This causes a
TypeError: Cannot read properties of undefined (reading 'name')This is cause by line 573 in table.ts, which reads:
For an object created with
Object.create(null), constructor isundefinedso this causes an error.Suggestion: Change this line to:
This should allow it to handle
nullconstructor objects without changing anything for other types.