Harold Howe

Results 9 issues of Harold Howe

This block of code should check the `status_code` of the response before parsing. If the server returns a 403, or any non 2xx code for that matter, then that error...

We have -Wshorten-64-to-32 enabled to detect portability problems. After adding flatbuffers to our project, we now see a bunch of new warnings in the flatbuffers header files. Flatbuffers should compile...

Given this foo.fbs input file ``` namespace com.awesomcompany.foo.flatbuffers; table Bar { name:string; value:int; } root_type Bar ; ``` and this cpp file that uses Bar after compiling with `flatc --cpp...

I would like to bury generated files one level down to get them away from hand written source code files in the same package. So given an fbs file with...

On 03/11/23, a fresh clone of the repo fails to build with this error ```bash $ npm run tsc > [email protected] tsc > tsc src/dialects/dialects.ts:8:14 - error TS2739: Type '{...

* Added null dialects for db2, oracle, and snowflake * Refactored code to obtain dialect through a helper function * Throw an error if the selected dialect is not implemented....

1. Treat single column unique indexes as a primary key if no other primary key was found. 2. Make assertion errors in build.test fail the test if they occur. Fixes...

Don't ask how, but we have to deal with some legacy MSSQL tables that look like this: ``` create table foo ( foo_id integer not null, name varchar(50) ); create...

Assertion errors need to be passed to the mocha `done` callback, otherwise the test will appear to be green. [These lines](https://github.com/sequelize/sequelize-auto/blob/master/test/build.test.js#L38-L42) should be changed to ``` auto.build().then(tableData => { callback(tableData);...