Skip to content

Tags: caross/squirrel

Tags

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added paren for select statement in set clause (Masterminds#263)

Co-authored-by: Чащин Валентин Валерьевич <[email protected]>

v1.4.0

Toggle v1.4.0's commit message
Add StatementBuilder.Where method

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update documentation and examples for some SelectBuilder methods and …

…Eq (Masterminds#242)

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request Masterminds#173 from sagikazarmark/patch-1

Fix structable link

v1.1

Toggle v1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request Masterminds#173 from sagikazarmark/patch-1

Fix structable link

v1.0

Toggle v1.0's commit message
Fix NotEq{"x": []interface{}} generation

This was resolving to FALSE, but should always be TRUE.

The only portable way I found to do this was to replace the expression
with a portable TRUE (1=1). Also changed Eq{"x": []interface{}} to a
portable FALSE (1=0) for consistency to avoid nasty surprises around
returning NULL instead of a boolean.

Fixes Masterminds#99