Mark Drake
Mark Drake
More importantly, does changing it fix the issue without breaking a 's**tload' of other things :)
A Quick Hack says yes, it does fix the issue with readableLength Given the following code ``` this.yadamuLogger.trace([this.constructor.name,'PIPELINE ERROR',this.tableName,this.COPY_METRICS.SOURCE_DATABASE_VENDOR,this.COPY_METRICS.TARGET_DATABASE_VENDOR],`${ this.currentPipeline.map((s) => { return `${s.constructor.name}:[${s.readableLength},${s.writableLength}]` }).join(',') }`) ``` I get the...
Sorry that was cut and paste error - updated . Basically this is a snapshot of the readableLength and writableLength values for each member of a pipeline when I deliberately...
Does that version also add destroy()/_destroy. I have a project (YADAMU) that does parallel copies of data between different databases. I need the ability to terminate all active copies, if...
Looks like I currently have readable-steam 2.3.7 (presumably as a result of MySQL's dependency). I just forced an install of readable-stream@latest and got 3.6.0 by the look of it. However...
@dougwilson Doug Not sure what to propose as the fix here. Changing the import to 'streams' seems to resolve the issue. Explicitly upgrading the 'readable-stream' component to 3.6.7 does not...
Just hit this too. Ugly. Can we provide some kind of bind directive to tell PG how to interpret the array, or what the required behavior for a given insert...
Ok,. insert into table select PARSE_JSON(?) appears to work, but how would I make that work with a multiple rows... A Union All of many SELECT operations
Yeah, I think that what I said in my follow-up comment..... However since array binds are not support for an insert select you have to do a fugly UNION all...
with other databases you can use surround parameter markers with SQL operators in the values clause which would be much cleaner.