module PG::FTS::Index::Module
Public Instance Methods
build(&executor)
click to toggle source
# File lib/pg/fts/index.rb, line 135 def build(&executor) PG::FTS::Index.build(*constants.map { |e| const_get(e) }, &executor) end
clear(&executor)
click to toggle source
# File lib/pg/fts/index.rb, line 131 def clear(&executor) PG::FTS::Index.clear(*constants.map { |e| const_get(e) }, &executor) end
create(&executor)
click to toggle source
# File lib/pg/fts/index.rb, line 123 def create(&executor) PG::FTS::Index.create(*constants.map { |e| const_get(e) }, &executor) end
drop(&executor)
click to toggle source
# File lib/pg/fts/index.rb, line 127 def drop(&executor) PG::FTS::Index.drop(*constants.map { |e| const_get(e) }, &executor) end
rebuild(&executor)
click to toggle source
# File lib/pg/fts/index.rb, line 139 def rebuild(&executor) PG::FTS::Index.rebuild(*constants.map { |e| const_get(e) }, &executor) end