@@ -143,22 +143,22 @@ extensible predicate summaryModel(
143143 */
144144predicate interpretModelForTest ( QlBuiltins:: ExtensionId madId , string model ) {
145145 exists ( string crate , string path , string output , string kind |
146- sourceModelDeprecated ( crate , path , kind , output , _, madId ) and
146+ sourceModelDeprecated ( crate , path , output , kind , _, madId ) and
147147 model = "Source: " + crate + "; " + path + "; " + output + "; " + kind
148148 )
149149 or
150150 exists ( string path , string output , string kind |
151- sourceModel ( path , kind , output , _, madId ) and
151+ sourceModel ( path , output , kind , _, madId ) and
152152 model = "Source: " + path + "; " + output + "; " + kind
153153 )
154154 or
155155 exists ( string crate , string path , string input , string kind |
156- sinkModelDeprecated ( crate , path , kind , input , _, madId ) and
156+ sinkModelDeprecated ( crate , path , input , kind , _, madId ) and
157157 model = "Sink: " + crate + "; " + path + "; " + input + "; " + kind
158158 )
159159 or
160160 exists ( string path , string input , string kind |
161- sinkModel ( path , kind , input , _, madId ) and
161+ sinkModel ( path , input , kind , _, madId ) and
162162 model = "Sink: " + path + "; " + input + "; " + kind
163163 )
164164 or
0 commit comments