diff options
| author | Robert | 2017-06-12 07:57:00 +0200 |
|---|---|---|
| committer | Robert | 2017-06-12 07:57:00 +0200 |
| commit | a4d78068ea6aa0f12217e27e4da1db408fa9f39f (patch) | |
| tree | 3d671b085348f7d03c037a5bab59d9c723799903 | |
| parent | f9b43e0c29276da72a1db1d0715d191b3015a115 (diff) | |
| download | chouette-core-a4d78068ea6aa0f12217e27e4da1db408fa9f39f.tar.bz2 | |
Hotfix for Jenkins, not sure why spec support files are not included correctly on Jenkins
| -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 |
