class ElasticAPM::Sql::Signature

def scan_dotted_identifier

def scan_dotted_identifier
  table = @tokenizer.text
  while scan_token(PERIOD) && scan_token(IDENT)
    table += ".#{@tokenizer.text}"
  end
  table
end