A Wrapper is a simple way to wrap an existing object so that it supports the Sequel DSL.
Set the value wrapped by the object.
[Source]
# File lib/sequel/sql.rb, line 1920 1920: def initialize(value) 1921: @value = value 1922: freeze 1923: end
[Validate]