You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/02/17 09:12:33 UTC

[GitHub] [arrow-datafusion] dependabot[bot] opened a new pull request, #5320: Update sqllogictest requirement from 0.12.0 to 0.13.0

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

   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.13.0</h2>
   <ul>
   <li><code>sqllogictest-bin</code> now uses the strict validator to update records (the runner still doesn't check schema).</li>
   <li>The query syntax now allows optional columns (<code>query\n</code> without any column arguments).</li>
   </ul>
   </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.13.0] - 2023-02-15</h2>
   <ul>
   <li><code>sqllogictest-bin</code> now uses the strict validator to update records (the runner still doesn't check schema).</li>
   <li>The query syntax now allows optional columns (<code>query\n</code> without any column arguments).</li>
   </ul>
   <h2>[0.12.0] - 2023-02-09</h2>
   <ul>
   <li>customizable column types and validators</li>
   </ul>
   <h2>[0.11.2] - 2023-02-09</h2>
   <ul>
   <li>support multiple files as input in cli</li>
   <li>remove unnecessary debug</li>
   </ul>
   <h2>[0.11.1] - 2023-01-15</h2>
   <ul>
   <li>fix parsing for trailing comments</li>
   </ul>
   <h2>[0.11.0] - 2023-01-14</h2>
   <p>This release contains some minor fixes.</p>
   <ul>
   <li>fix: use <code>Vec&lt;Vec&lt;String&gt;&gt;</code> for external engine (JDBC)</li>
   <li>fix: Use <code>lines()</code> instead of <code>split('\n')</code> in <code>parse_inner</code>. So the behavior can be correct on Windows.</li>
   <li>fix: parse DML with <code>returning</code> as a query</li>
   <li>A minor <strong>breaking change</strong>: <code>update_test_file</code> takes <code>&amp;mut Runner</code> instead of its ownnership.</li>
   </ul>
   <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:</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/ad46a4f7145b4cc7b94f8c48591527f5defeb01e"><code>ad46a4f</code></a> release: bump to v0.13.0 (<a href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/168">#168</a>)</li>
   <li><a href="https://github.com/risinglightdb/sqllogictest-rs/commit/fa5407e4e0752eb0074a9bad24e0ab63b4b0f8ae"><code>fa5407e</code></a> release: bump to v0.12.1 (<a href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/166">#166</a>)</li>
   <li><a href="https://github.com/risinglightdb/sqllogictest-rs/commit/30b83fff6df5b7434afc96a888b7cc25fff21cc4"><code>30b83ff</code></a> Customizable types follow up: complete types in update_test_file (<a href="https://github-redirect.dependabot.com/risinglightdb/sqllogictest-rs/issues/164">#164</a>)</li>
   <li>See full diff in <a href="https://github.com/risinglightdb/sqllogictest-rs/compare/v0.12.0...v0.13.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-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-datafusion] dependabot[bot] closed pull request #5320: Update sqllogictest requirement from 0.12.0 to 0.13.0

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #5320: Update sqllogictest requirement from 0.12.0 to 0.13.0
URL: https://github.com/apache/arrow-datafusion/pull/5320


-- 
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-unsubscribe@arrow.apache.org

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


[GitHub] [arrow-datafusion] dependabot[bot] commented on pull request #5320: Update sqllogictest requirement from 0.12.0 to 0.13.0

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #5320:
URL: https://github.com/apache/arrow-datafusion/pull/5320#issuecomment-1434687266

   Looks like sqllogictest is up-to-date now, so this is no longer needed.


-- 
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-unsubscribe@arrow.apache.org

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