Git Product home page Git Product logo

Comments (4)

george-carlin avatar george-carlin commented on August 28, 2024

Note: in the meantime I was able to get it working by removing infer: true from my Accounts relation (accounts is the table that has the inet column) and specifying the columns I need explicitly within a schema block, without including the inet columns. This only works because I don't actually care about the inet columns as far as ROM is concerned, so I don't need to include them.

EDIT... wait, nevermind, this doesn't work, I was just on the wrong branch. Disregard!

EDIT no. 2: managed to 'fix' it with the following hack: opened up my local copy of the rom-sql gem, and changed the method map_type in lib/rom/sql/schema/inferrer to the following:

        def map_type(ruby_type, db_type, **_kw)
          ruby_type = :string if db_type.to_s == 'inet' # <- this is the new line
          self.class.ruby_type_mapping.fetch(ruby_type) {
            raise UnknownDBTypeError, "Cannot find corresponding type for #{ruby_type || db_type}"
          }
        end

This is obviously not a long-term solution: use at your own peril.

from rom-sql.

solnic avatar solnic commented on August 28, 2024

I'll tweak inferrer so that it doesn't raise and instead schema will allow you to define missing attributes and if some attributes are still missing during schema finalization, then it will raise.

from rom-sql.

solnic avatar solnic commented on August 28, 2024

If you bundle update then you'll be able to do something like this:

schema(infer: true) do
  attribute :ip, Types::String
end

Assuming :ip is the name of the attribute that fails during inference, this will work now.

from rom-sql.

george-carlin avatar george-carlin commented on August 28, 2024

Thanks!

from rom-sql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.