Skip to content

Commit

Permalink
Added missing postgres inet operators. (laravel#21518)
Browse files Browse the repository at this point in the history
  • Loading branch information
loganfre authored and taylorotwell committed Oct 4, 2017
1 parent cf40b97 commit d610151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Query/Grammars/PostgresGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PostgresGrammar extends Grammar
protected $operators = [
'=', '<', '>', '<=', '>=', '<>', '!=',
'like', 'not like', 'between', 'ilike',
'&', '|', '#', '<<', '>>',
'&', '|', '#', '<<', '>>', '>>=', '=<<',
'@>', '<@', '?', '?|', '?&', '||', '-', '-', '#-',
];

Expand Down

0 comments on commit d610151

Please sign in to comment.