RSpec.describe 'ROM::SQL::Schema::PostgresInferrer', :postgres do include_context 'database setup' before do conn.drop_table?(:test_inferrence) conn.create_table :test_inferrence do primary_key :id, :uuid Json :json_data Jsonb :jsonb_data Decimal :money, null: false column :tags, "text[]" column :tag_ids, "bigint[]" end end let(:dataset) { :test_inferrence } let(:schema) { container.relations[dataset].schema } context 'inferring db-specific attributes' do before do dataset = self.dataset conf.relation(dataset) do schema(dataset, infer: true) end end it 'can infer attributes for dataset' do expect(schema.attributes).to eql( id: ROM::SQL::Types::PG::UUID.meta(name: :id, primary_key: true), json_data: ROM::SQL::Types::PG::JSON.optional.meta(name: :json_data), jsonb_data: ROM::SQL::Types::PG::JSONB.optional.meta(name: :jsonb_data), money: ROM::SQL::Types::Decimal.meta(name: :money), tags: ROM::SQL::Types::PG::Array('text').optional.meta(name: :tags), tag_ids: ROM::SQL::Types::PG::Array('biging').optional.meta(name: :tag_ids) ) end end end