diff options
| -rw-r--r-- | spec/support/pg_catalog.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/support/pg_catalog.rb b/spec/support/pg_catalog.rb index 38c75aabe..ca02f2550 100644 --- a/spec/support/pg_catalog.rb +++ b/spec/support/pg_catalog.rb @@ -1,6 +1,7 @@ +require_relative 'bare_sql' module Support module PGCatalog - include BareSQL + include Support::BareSQL def get_columns(schema_name, table_name) execute("SELECT column_name, column_default FROM information_schema.columns WHERE table_name = '#{table_name}' AND table_schema = '#{schema_name}'").to_a |
