# File lib/jdbc_adapter/jdbc_derby.rb, line 59
      def default_value(value)
        # jdbc returns column default strings with actual single quotes around the value.
        return $1 if value =~ /^'(.*)'$/

        value
      end