Edward Rudd
Edward Rudd
fix for #27
In one of my projects I have a DB field named "type". However due to "type" being a reserved word in rust I receive errors when diesel_factories tries to generate...
e.g. for when you have a join table with the two join columns as a combined primary key.
I have a join table where the primary key is the two FK keys. e.v. ```rust struct VideoCategory { video_id: i64, category_id: i64, created_at: NaieveDateTime, updated_at: NaieveDateTime, } ``` I...
The hstore indexes are not saved to schema.rb correctly.. instead of saving an `add_hstore_index` line it simply creates an `add_index` line, thus the 'gin' index isn't created. A related issue...
Using some Macro magic we can do this. ``` objc #define makeStr(s) makePStr(s) #define makePStr(s) #s #if !defined APP_BUNDLE_ID && !defined APP_BUNDLE_VERSION #error Define APP_BUNDLE_ID and APP_BUNDLE_VERSION #endif NSString *...
**Describe the bug** I built a report today that has 6 "Grouped" fields (only a count summary) and 4 custom expression fields (to coerce an encoded integer into a dotted...
## Setup ### Versions - **Rust:** 1.62.1 - **Diesel:** 2.0.0-rc.1 - **Database:** PG 11 - **Operating System** macOS 12.4 ### Feature Flags - **diesel:** ["postgres", "r2d2", "chrono"] ## Problem Description...
Steps to recreate. 1) start a PG server 2) connect to it via some tool (e.g. I'm using a JDBC driver via DataGrip) 3) in PGApp stop the server and...