balderdashy / waterline-sequel

A SQL generator for use in Waterline Adapters
MIT License
16 stars 61 forks source link

Replacing a this.caseSensitive with self.caseSensitive. #18

Closed DavidEBest closed 9 years ago

DavidEBest commented 9 years ago

In the expandBlock function, this.caseSensitive is not set. self.caseSensitive (used elsewhere in the function) is set correctly.

This corrects the ILIKE unit test failures described in balderdashy/sails-postgresql#124 (failures 5 & 6). Integration tests for sails-mysql and sails-postgresql both still succeed with this change.

particlebanana commented 9 years ago

Great thanks!