lib/table_saw.rb in table_saw-2.2.0 vs lib/table_saw.rb in table_saw-2.3.0
- old
+ new
@@ -4,10 +4,11 @@
require 'table_saw/connection'
require 'table_saw/dependency_graph'
require 'table_saw/information_schema'
require 'table_saw/manifest'
require 'table_saw/queries'
+require 'table_saw/formats'
module TableSaw
def self.configuration
@configuration ||= TableSaw::Configuration.new
end
@@ -22,7 +23,11 @@
end
end
def self.information_schema
@information_schema ||= TableSaw::InformationSchema.new
+ end
+
+ def self.schema_cache
+ TableSaw::Connection.adapter.schema_cache
end
end