Charles Pritchard

Results 109 comments of Charles Pritchard

@fiedukow Confirmed, legacy_timestamp works as a workaround.

Seems like we can't use any timezone but UTC -- as the hive connector needs to be set to UTC and Presto, to avoid ORC read issues for data written...

This has been a really helpful project to me; seems like global. MONGOOSE_DRIVER_PATH / mongoose.driver.set() compatibility would be a help for these mongoose cases. ``` const initMongo = (url, debug=true)...

From the code-- it neither looks for the flag returnNewDocument nor does it run synchronously as it uses an async findOne. So I don't think it works at all in...

I'm pressed for time; here's the fix - note options.fields is set to args[1] earlier in the code, so it needs that else statement in as well, thus the if,...

Noticing for myself that overriding ObjectID would be valuable in that I could make it deterministic for snapshots. This ObjectID is `bson-objectid`, in mongodb it is `mongodb-core.BSON.ObjectID` I can see...

I'd see these working with the MongoDB typings, using extends and such.

@arlyon Did this get addressed?

Simple solution works, of course. Example is simple as: ``` var generateTable = function(req, resp) { resp(null, [{ "foo": 1, "bar": "bar value " + Date.now() }] ); }; ```...

You're correct -- they're supposed to be cast: "we need to cast the ints as strings to comply with the type definition of the Row object." https://osquery.readthedocs.org/en/stable/development/creating-tables/ Seems that calling...