We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57b89f commit 0f9dd0cCopy full SHA for 0f9dd0c
lib/arjdbc/jdbc/adapter.rb
@@ -195,6 +195,11 @@ def self.bind_substitution(visitor); visitor; end
195
def bind_substitution(visitor); self.class.bind_substitution(visitor); end
196
private :bind_substitution
197
198
+ # @override default implementation (does nothing silently)
199
+ def structure_dump
200
+ raise NotImplementedError, "structure_dump not supported"
201
+ end
202
+
203
def is_a?(klass) # :nodoc:
204
# This is to fake out current_adapter? conditional logic in AR tests
205
if Class === klass && klass.name =~ /#{adapter_name}Adapter$/i
0 commit comments