diff options
author | Max Lohrmann <dmoagx@users.noreply.github.com> | 2016-04-09 04:28:00 +0200 |
---|---|---|
committer | Max Lohrmann <dmoagx@users.noreply.github.com> | 2016-04-09 04:28:00 +0200 |
commit | fc9e31b3e4bf24bbc0448ab900dfaeddf51ef4f7 (patch) | |
tree | 7da1960ca4e94048d5feb44d23925ace30dd07c3 /Resources | |
parent | 6672e0d55810a7447fd06ef1113ad88473ba7538 (diff) | |
download | sequelpro-fc9e31b3e4bf24bbc0448ab900dfaeddf51ef4f7.tar.gz sequelpro-fc9e31b3e4bf24bbc0448ab900dfaeddf51ef4f7.tar.bz2 sequelpro-fc9e31b3e4bf24bbc0448ab900dfaeddf51ef4f7.zip |
* Added two helper methods for working with nil/NSNull in arrays
* Fixed a case of "Updating UI from background thread" when navigating foreign keys *within* a table
* Fixed navigating foreign keys of binary columns causing exceptions if the origin table is not in latin1 and the binary data not "text like" (#2098).
* As a consequence binary columns will now use Hex representation when navigating FKs.
* Added a new content filter to do "= UNHEX($x)" as an interim solution
Diffstat (limited to 'Resources')
-rw-r--r-- | Resources/English.lproj/ContentFilters.plist | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Resources/English.lproj/ContentFilters.plist b/Resources/English.lproj/ContentFilters.plist index 88e11ea5..a3eab36f 100644 --- a/Resources/English.lproj/ContentFilters.plist +++ b/Resources/English.lproj/ContentFilters.plist @@ -219,6 +219,14 @@ Do quote strings manually.</string> <key>Clause</key> <string>NOT LIKE ''</string> </dict> + <dict> + <key>MenuLabel</key> + <string>= (Hex String)</string> + <key>NumberOfArguments</key> + <integer>1</integer> + <key>Clause</key> + <string>= $BINARY UNHEX('${}')</string> + </dict> </array> <key>date</key> <array> |