Brian Park
Brian Park
It's unclear to me what information you are conveying in your response: * Are you teaching me how to read 2 bytes from a pointer? It should be clear that...
Maybe the solution is to remove the `static_cast`? See if the following helps: https://github.com/bxparks/AUnit/tree/gtest_ref_cast It fixes your specific problem. I don't have any code that uses ``, and I'm not...
I don't right now. The few times when I could have used a mocking framework, I rolled my own fake objects. It wasn't too bad. Given that the vast majority...
I'll leave it open because I am somewhat curious about it (but at a low-level priority). I've not used GMock, but I'm quite familiar with the Java frameworks (JMock, EasyMock,...
Related to this, it's now possible (after a recent class hierarchy refactoring) for `assertXxx()` macros to print out the name of the test in the assertion message. However, in the...
Without a reproducible example, there's little that we can do. Did you try narrowing down the offending line at or near 30334? Once you find the problem, maybe you can...
I understand it might be useful in your situation, but I'm not sure that a INTEGER -> TIMESTAMP conversion is the correct behavior because `bq load --autodetect` does not support...
Oh, I see. Although `bq load --autodetect` does not support heterogeneous TIMESTAMP | INTEGER values, if the table already exists, and the field is already a TIMESTAMP, then `bq load`...
(And you explained that same thing in your comment, but for some reason, the email version of that truncated the 1st paragraph, so I saw only your last sentence.)
I have unit tests that depend on running against deterministic versions of the TZ database. Currently I use the `--tz_version` flag to specify the version (e.g. `--tz_version 2020a`). It sounds...