Mark Drake
Mark Drake
### Details My node program is printing out the following message and then terminating. ``` Stacktrace: ptr1=0x978432a6291 ptr2=(nil) ptr3=(nil) ptr4=(nil) ptr5=(nil) ptr6=(nil) failure_message_object=0x7ffeab732320 ==== JS stack trace ========================================= 0: ExitFrame...
I do have very large string values in my documents, so this is probably expected. Do I have any way of avoiding this ( I think some of the nodes...
``` {"systemInformation":{"yadamuVersion":"3.0","date":"2024-08-07T01:49:47.278Z","timeZoneOffset":420,"schema":"t_postgres","dbiKey":"postgres","vendor":"Postgres","dbVersion":"160001","softwareVendor":"The PostgreSQL Global Development Group","driverSettings":{"spatialFormat":"EWKB","timestampPrecision":6,"circleFormat":"CIRCLE"},"nodeClient":{"version":"v20.7.0","architecture":"x64","platform":"win32"},"currentUser":"postgres","sessionUser":"postgres","dbName":"yadamu","databaseVersion":"160001","timezone":"+00:00","postgisInfo":"3.4 USE_GEOS=1 USE_PROJ=1 USE_STATS=1","yadamuInstanceID":"5F0997C3-8D35-484C-9330-7D40370A6D39","yadamuInstallationTimestamp":"2024-08-02T21:06:18+00:00"},"ddl":[],"metadata":{"t1":{"tableSchema":"t_postgres","tableName":"t1","columnNames":["key","val"],"dataTypes":["smallint","double precision"],"sizeConstraints":[[16,0],[53]],"vendor":"Postgres"}},"data":{"t1":[[1,-1.7976931348623157e+308],[2,1.7976931348623157e+308],[26,-1.7976931348623157e+308],[27,1.7976931348623157e+308]]}} ``` Becomes ``` { "systemInformation": { "yadamuVersion": "3.0", "date": "2024-08-07T01:49:47.278Z", "timeZoneOffset": 420, "schema": "t_postgres", "dbiKey": "postgres", "vendor": "Postgres", "dbVersion": "160001",...
Given the following example ```js import mysql from 'mysql2/promise' import fs from 'fs' class Test { vendorProperties = { "multipleStatements":true ,"typeCast":true ,"supportBigNumbers":true ,"bigNumberStrings":true ,"dateStrings":true ,"trace":true ,"user":"root" ,"password": "oracle" ,"host":"yadamu-db1" ,"database":"sys"...
Migrating from mysql to mysql2. Attempting to use INFILE LOCAL to load a file into a staging table Code ```js import mysql from 'mysql2/promise' import fs from 'fs' class Test...
Given the following code ```js import mysql from 'mysql2' import fs from 'fs' class Test { vendorProperties = { "multipleStatements":true ,"typeCast":true ,"supportBigNumbers":true ,"bigNumberStrings":true ,"dateStrings":true ,"trace":true ,"user":"root" ,"password": "oracle" ,"host":"yadamu-db1" ,"database":"sys"...
### Version 22.9.0 (Docker Latest) ### Platform ```text Linux (Docker Latest) root@0cd652c8fcb1:/# uname -a Linux 0cd652c8fcb1 5.15.0-84-generic #93-Ubuntu SMP Tue Sep 5 17:16:10 UTC 2023 x86_64 GNU/Linux ``` ### Subsystem...
Update QA Environment to use Mongo 8.x by default
The Postgres driver needs to support SSL connections to enable operations against PostgresSQL servers running under Amazon AWS/RDS
The Azure driver now expects a connection object with a connection property that contains the connection string Eg ``` "azure" : "ConncetionString" `` Becomes "azure" :{ connection" : "ConncetionString" }