From: Jeff H. <Je...@Je...> - 2025-02-22 20:45:18
|
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <p>I have found another with a similar problem: SELECT.</p> <p>The only difference in these two is the capitalization of SELECT:</p> <div style="display:inline-block;white-space:pre;background-color:#012456;font-family:'Cascadia Code',monospace;font-size:10pt;padding:4px;"><span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">pipc </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m4 ) literal blue white green| literal green blue white | literal brown re</span><span style="color:#D3D7CF;background-color:#012456;">d white | literal blue brown red | SELECT multiple /parse rec . C .; r = 'blue</span><span style="color:#D3D7CF;background-color:#012456;"> red white'.wordpos(c); return r/ | cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">java </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">Error: the RUN method should never be called.</span> <span style="color:#D3D7CF;background-color:#012456;">RC=16</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">pipc </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m4 ) literal blue white green| literal green blue white | literal brown re</span><span style="color:#D3D7CF;background-color:#012456;">d white | literal blue brown red | select multiple /parse rec . C .; r = 'blue</span><span style="color:#D3D7CF;background-color:#012456;"> red white'.wordpos(c); return r/ | cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">java </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">blue brown red</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes></span></div> <p></p> <div class="moz-cite-prefix">On 2/22/2025 1:59 PM, Jeff Hennick wrote:<br> </div> <blockquote type="cite" cite="mid:6e0...@Je..."> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <p>I am having a problem with Pipelines, discovered while preparing for the Symposium. It is using the PARSE stage: it works great if the stage name in the pipe is all lowercase, "parse," but not if it is uppercase, "PARSE." Other stage names work fine upper or lower. I don't know if there are other problem names or not.<br> </p> <p>Here, m3 is lowercase and m4 upper. </p> <p>Here I compile and run them. Below is the listings of the files. <br> </p> <div style="display:inline-block;white-space:pre;background-color:#012456;font-family:'Cascadia Code',monospace;font-size:10pt;padding:4px;"><span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">pipc </span><span style="color:#D3D7CF;background-color:#012456;">m3</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m3 ) literal blue brown red | parse /_1 . / /Part z1, has _1 units/ | cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">java </span><span style="color:#D3D7CF;background-color:#012456;">m3</span> <span style="color:#D3D7CF;background-color:#012456;">Part z1, has blue units</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">pipc </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m4 ) literal blue brown red | PARSE /_1 . / /Part z1, has _1 units/ | cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">java </span><span style="color:#D3D7CF;background-color:#012456;">m4</span> <span style="color:#D3D7CF;background-color:#012456;">RC=16</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">cat </span><span style="color:#D3D7CF;background-color:#012456;">m3.njp</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m3)</span> <span style="color:#D3D7CF;background-color:#012456;"> literal blue brown red |</span> <span style="color:#D3D7CF;background-color:#012456;"> parse /_1 . / /Part z1, has _1 units/ |</span> <span style="color:#D3D7CF;background-color:#012456;"> cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes> </span><span style="color:#FCE94F;background-color:#012456;">cat </span><span style="color:#D3D7CF;background-color:#012456;">m4.njp</span> <span style="color:#D3D7CF;background-color:#012456;">pipe (m4)</span> <span style="color:#D3D7CF;background-color:#012456;"> literal blue brown red |</span> <span style="color:#D3D7CF;background-color:#012456;"> PARSE /_1 . / /Part z1, has _1 units/ |</span> <span style="color:#D3D7CF;background-color:#012456;"> cons</span> <span style="color:#D3D7CF;background-color:#012456;">PS C:\Users\Jeff\Documents\nr5\examples\pipes></span></div> <br> <fieldset class="moz-mime-attachment-header"></fieldset> <br> <fieldset class="moz-mime-attachment-header"></fieldset> <pre wrap="" class="moz-quote-pre">_______________________________________________ netrexx-pipelines mailing list <a class="moz-txt-link-abbreviated" href="mailto:net...@li...">net...@li...</a> <a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/netrexx-pipelines">https://lists.sourceforge.net/lists/listinfo/netrexx-pipelines</a> </pre> </blockquote> </body> </html> |