Re: [xsl] Selection help

Subject: Re: [xsl] Selection help
From: "Syd Bauman s.bauman@xxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 30 Nov 2015 22:22:29 -0000
Ack! Sorry, I changed the wrong equality operator. Change

  select="column[@name eq current()/constraint[@type='FOREIGN']/childKey/@name]"

to
  select="column[@name = current()/constraint[@type eq 'FOREIGN']/childKey/@name]"

(To oversimplify, the "eq" operator compares singletons; the "="
operator compares sequences.)

Current Thread