gitlab-ce/gems/gitlab-schema-validation/lib/gitlab/schema/validation/schema_objects/base.rb

32 lines
627 B
Ruby

# frozen_string_literal: true
module Gitlab
module Schema
module Validation
module SchemaObjects
class Base
def initialize(parsed_stmt)
@parsed_stmt = parsed_stmt
end
def name
raise NoMethodError, "subclasses of #{self.class.name} must implement #{__method__}"
end
def table_name
parsed_stmt.relation.relname
end
def statement
@statement ||= PgQuery.deparse_stmt(parsed_stmt)
end
private
attr_reader :parsed_stmt
end
end
end
end
end