elgris / sqrl

Fluent SQL generation for golang
MIT License
279 stars 38 forks source link

Add pg.Array expression, fix README for JSON/JSONB #18

Closed shaxbee closed 6 years ago

shaxbee commented 6 years ago

Just noticed strings.Builder is not in go 1.8, I can fix it if we are supporting that version :-)

shaxbee commented 6 years ago

Fixed compat with 1.8, optimized and cleaned up code, fixed string quoting. Ready for review :-)

elgris commented 6 years ago

thanks @shaxbee ! Will review within a day :) sqrl supports Go1.8 and higher, let's keep code backward compatible for a while.

shaxbee commented 6 years ago

@elgris Yup, I've replaced strings.Builder with bytes.Buffer for compat

shaxbee commented 6 years ago

Added support for array and int/uint types from reflect package with tests.

shaxbee commented 6 years ago

Ready for review :-)

elgris commented 6 years ago

thanks @shaxbee !