Module: Timescaledb::Toolkit::Helpers

Defined in:
lib/timescaledb/toolkit/helpers.rb

Instance Method Summary collapse

Instance Method Details

#add_toolkit_to_search_path!Object

Includes toolkit_experimental in the search path to make it easy to have access to all the functions



11
12
13
14
15
# File 'lib/timescaledb/toolkit/helpers.rb', line 11

def add_toolkit_to_search_path!
  return if schema_search_path.include?("toolkit_experimental")

  self.schema_search_path = "#{schema_search_path}, toolkit_experimental"
end