dependabot[bot] opened a new pull request, #4670:
URL: https://github.com/apache/arrow-datafusion/pull/4670

   Updates the requirements on 
[sqllogictest](https://github.com/risinglightdb/sqllogictest-rs) to permit the 
latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/risinglightdb/sqllogictest-rs/releases";>sqllogictest's 
releases</a>.</em></p>
   <blockquote>
   <h2>Release: v0.10.0</h2>
   <ul>
   <li>
   <p>Improve the ability to unparse and update the test files. Mainly add 
<code>update_record_with_output</code> and <code>update_test_file</code> to the 
library.</p>
   <p>More details:</p>
   <ul>
   <li>Add <code>impl Display</code> for <code>Record</code> (refactor 
<code>unparse</code>).</li>
   <li>Add <code>Record::Whitespace</code> so the whitespace in the original 
files can be reconstructed during <code>unparse</code>.</li>
   <li>Add tests for unparsing and updating records.</li>
   <li>Refactor and fix the behavior about newlines and <code>halt</code> for 
CLI options <code>--override</code> and <code>--format</code>.</li>
   </ul>
   </li>
   <li>
   <p>Fix: <code>hash-threshold</code> should be compared with the number of 
values instead of the number of rows.</p>
   </li>
   <li>
   <p><strong>Breaking change</strong>: The type of <code>Validator</code> is 
changed from <code>fn(&amp;Vec&lt;String&gt;, &amp;Vec&lt;String&gt;) -&gt; 
bool</code> to <code>fn(&amp;[Vec&lt;String&gt;], &amp;[String]) -&gt; 
bool</code>. Also added a <code>default_validator</code>.</p>
   </li>
   </ul>
   <p>Thanks to the contributions of <a 
href="https://github.com/alamb";><code>@​alamb</code></a> and <a 
href="https://github.com/xudong963";><code>@​xudong963</code></a> .</p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/risinglightdb/sqllogictest-rs/blob/main/CHANGELOG.md";>sqllogictest's
 changelog</a>.</em></p>
   <blockquote>
   <h2>[0.10.0] - 2022-12-15</h2>
   <ul>
   <li>
   <p>Improve the ability to unparse and update the test files. Mainly add 
<code>update_record_with_output</code> and <code>update_test_file</code> to the 
library.</p>
   <p>More details:</p>
   <ul>
   <li>Add <code>impl Display</code> for <code>Record</code> (refactor 
<code>unparse</code>).</li>
   <li>Add <code>Record::Whitespace</code> so the whitespace in the original 
files can be reconstructed during <code>unparse</code>.</li>
   <li>Add tests for unparsing and updating records.</li>
   <li>Refactor and fix the behavior about newlines and <code>halt</code> for 
CLI options <code>--override</code> and <code>--format</code>.</li>
   </ul>
   </li>
   <li>
   <p>Fix: <code>hash-threshold</code> should be compared with the number of 
values instead of the number of rows.</p>
   </li>
   <li>
   <p><strong>Breaking change</strong>: The type of <code>Validator</code> is 
changed from <code>fn(&amp;Vec&lt;String&gt;, &amp;Vec&lt;String&gt;) -&gt; 
bool</code> to <code>fn(&amp;[Vec&lt;String&gt;], &amp;[String]) -&gt; 
bool</code>. Also added a <code>default_validator</code>.</p>
   </li>
   </ul>
   <p>Thanks to the contributions of <a 
href="https://github.com/alamb";><code>@​alamb</code></a> and <a 
href="https://github.com/xudong963";><code>@​xudong963</code></a> .</p>
   <h2>[0.9.0] - 2022-12-07</h2>
   <ul>
   <li>Improve the format and color handling for errors.</li>
   <li>Support <code>hash-threshold</code>.</li>
   <li>Fix <code>statement count &lt;n&gt;</code> for postgres engines.</li>
   <li><strong>Breaking change</strong>: use 
<code>Vec&lt;Vec&lt;String&gt;&gt;</code> instead of <code>String</code> as the 
query results by <code>DB</code>. This allows the runner to verify the results 
more precisely.
   <ul>
   <li>For <code>rowsort</code>, runner will only sort actual results now, 
which means the result in the test cases should be sorted.</li>
   </ul>
   </li>
   <li><strong>Breaking change</strong>: <code>Hook</code> is removed.</li>
   <li><strong>Breaking change</strong>: <code>Record</code> and parser's 
behavior are tweaked:
   <ul>
   <li>retain <code>Include</code> record when linking its content</li>
   <li>keep parsing after <code>Halt</code></li>
   <li>move <code>Begin/EndInclude</code> to <code>Injected</code></li>
   </ul>
   </li>
   <li>Added CLI options <code>--override</code> and <code>--format</code>, 
which can override the test files with the actual output of the database, or 
reformat the test files.</li>
   </ul>
   <h2>[0.8.0] - 2022-11-22</h2>
   <ul>
   <li>Support checking error message using <code>statement error 
&lt;regex&gt;</code> and <code>query error &lt;regex&gt;</code> syntax.
   <ul>
   <li><strong>Breaking change</strong>: <code>Record::Statement</code>,  
<code>Record::Query</code> and <code>TestErrorKind</code> are changed 
accordingly.</li>
   </ul>
   </li>
   </ul>
   <h2>[0.7.1] - 2022-11-15</h2>
   <ul>
   <li>Fix: <code>--external-engine-command-template</code> should not be 
required</li>
   </ul>
   <h2>[0.7.0] - 2022-11-14</h2>
   <ul>
   <li>Add support for external driver.</li>
   <li>Support more type in postgres-extended.</li>
   <li>Record file stack in location.</li>
   </ul>
   <h2>[0.6.4] - 2022-08-25</h2>
   <ul>
   <li>Use one session for each file in serial mode.</li>
   </ul>
   <h2>[0.6.3] - 2022-08-24</h2>
   <ul>
   <li>Support registering hook function after each query.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/29f219adc0d46f48c78bf076fdd27c68a6636516";><code>29f219a</code></a>
 release 0.10.0 &amp; improve README &amp; add <code>update_test_file</code> 
(<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/132";>#132</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/cdc108a46b4596e41237b6bde8b4724f3a60ad55";><code>cdc108a</code></a>
 Add more tests for <code>update_record_with_output</code> (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/131";>#131</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/7030a63c49a6434fc9ad6028ed7e34144a33d471";><code>7030a63</code></a>
 Add <code>update_record_with_output</code> function and tests (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/130";>#130</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/65b122f9b7da2e1bc622da54a7bddbde597a6390";><code>65b122f</code></a>
 Change the type for Validator (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/126";>#126</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/46752d1b536f186e3f976bdfce4968ce761ab230";><code>46752d1</code></a>
 Test for parse(unparse(parse()) is identity (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/129";>#129</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/f07a73e3b020fca51926c6054784ef10c328a42d";><code>f07a73e</code></a>
 fix(bin): fix newline handling for <code>--format/override</code> (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/128";>#128</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/208998abd559a2300e674bc682da6d10abb312c5";><code>208998a</code></a>
 Improve the ability to parse/unparse files (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/127";>#127</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/4f673add9daee85cc3885304509a258507598cec";><code>4f673ad</code></a>
 Add a quick start cookbook to the README (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/125";>#125</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/d753e4c77fbf00cdaab69477df2e9c3dba3f5fcc";><code>d753e4c</code></a>
 fix: hash-threshold should be compared with the number of values (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/121";>#121</a>)</li>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/7e39de7951996f43eb3fd27458081557adba8c02";><code>7e39de7</code></a>
 ci: tweak release name (<a 
href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/115";>#115</a>)</li>
   <li>See full diff in <a 
href="https://github.com/risinglightdb/sqllogictest-rs/compare/v0.9.0...v0.10.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to