Skip to content

Instantly share code, notes, and snippets.

@bfabry
Created July 5, 2013 06:26
Show Gist options
  • Save bfabry/5932376 to your computer and use it in GitHub Desktop.
Save bfabry/5932376 to your computer and use it in GitHub Desktop.
module DataSource
module ConnectionProxies
class TeradataConnectionProxy < ConnectionProxy
def initialize(connection)
super(connection)
connection.class_eval do
@connection.class_eval do
def columns(*args)
binding.pry
end
def columns_internal(*args)
binding.pry
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment