Skip to content

Commit

Permalink
Use actual operator class in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Aug 16, 2019
1 parent ff581e3 commit 9b3478c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/sequel/adapters/shared/postgres.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ class CreateTableGenerator < Sequel::Schema::CreateTableGenerator
# To use a custom operator class, you need to use Sequel.lit with the expression
# and operator class:
#
# exclude([[Sequel.lit('col1 inet_opts'), '&&'], [:col2, '=']])
# # EXCLUDE USING gist (col1 inet_opts WITH &&, col2 WITH =)
# exclude([[Sequel.lit('col1 inet_ops'), '&&'], [:col2, '=']])
# # EXCLUDE USING gist (col1 inet_ops WITH &&, col2 WITH =)
#
# Options supported:
#
Expand Down

0 comments on commit 9b3478c

Please sign in to comment.