vote up 1 vote down star

I am writing a migration generator for a plugin I am writing and I need to to be able to find what unique indexes a table has so I can modify existing unique indexes to become a composite unique index. I have been trying to find a way to access what indexes a table has with ActiveRecord. I have only been able to find ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::indexes method, but unfortunately this is only available for the PosgreSQLAdapter. I need to be able to support the other major databases.

I first grepping the schema.rb file to find the indexes, this worked at first, but I soon realized this was a bad strategy.

I was thinking that if ActiveRecord does not provide a means to be able to do this for multiple database adapters, I may be able to write adapter specific queries to retrieve the index information from a table. If I need to resort to this method what would be a good way to determine the adapter in use?

If someone knows of a way to get ActiveRecord to list table index information that would be ideal.

flag

The only way I can think to do this right now is with the help of ActiveRecord::SchemaDumper.dump The problem is that this dumps the current schema to $stdout and I do not know how to capture that and convert the output into a string. If I knew that, I would be able to use the code from my first approach of reading schema.rb. Anyone know how to capture $stdout for something that was wrote in a block? For example this does not work: schema_str = IO::open(2) { ActiveRecord::SchemaDumper.dump }.read – Sean McCleary Nov 5 at 23:12

1 Answer

vote up 1 vote down check

This works with MySQL and SQLite3:

ActiveRecord::Base.connection.tables.each do |table|
    puts ActiveRecord::Base.connection.indexes(table).inspect
end

(I don't have Postgres to test)

But I think it only gives you the indexes you specifically created.

Also, to find out which adapter is in use:

ActiveRecord::Base.connection.class
link|flag
That is a very clean way of getting the indexes. This should work for me. Thank you. – Sean McCleary Nov 6 at 1:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.