# File lib/squish.rb, line 143
  def select_keyword (text)
    if text =~ /^\s*SELECT\s+(.*)/is
      nextdata = $1
      # puts "Found select keyword. Next is: #{nextdata}\n"
      loginfo('select_keyword', 'SELECT', nextdata)
      return(select_arglist(nextdata))
    end
    puts "Error: Expected first chars to be 'SELECT ' GOT: '#{text}'"
  end