Philip Dubé

Results 50 issues of Philip Dubé

On managed service default_transaction_read_only is turned on when disk gets full. pg_cron then goes on to generate many logs due to attempting to execute `UPDATE`. This produces much logging in...

enhancement

#72 suggested lazy_static could be removed in 1.68 as `VecDeque::new` became a const fn. This PR materializes that suggestion

#741 proposes changing `get_ready_index_mut`'s signature, but that would be a semver breaking change, so can wait for `0.5` Also remove unused lazy_static dev dependency

data-encoding 2.5.0 raises their MSRV to 1.70, meanwhile base64 has 0.21.3 reduced MSRV to 1.48 in order to be compatible with Debian Bullseye https://github.com/ia0/data-encoding/pull/77 https://github.com/marshallpierce/rust-base64/pull/239 https://github.com/marshallpierce/rust-base64/pull/246 This also attempts to...

Example with issue: ``` table Test { x: int; } table TestContainer { a: Test; b: Test; } ``` Generated code has TestContainer.AddA calling PrependStructSlot. Looking at the sample_binary.lua it's...

c++
codegen
lua

Having a struct UUID, the file generated was Uuid.lua, but generated code passing UUID all uppercase to require, on case sensitive filesystems this doesn't work Update GenerateMethod to use namer_...

c++
codegen
lua

Array of structs not implemented yet

python
c++
codegen
lua

Bools were being encoded as ASCII 0/1 instead of binary 0/1 Also fix issue @Cindlory noticed that strings do not expose numerical indexing

lua

Probably a code path that never runs

lua