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

   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>v0.17.0</h2>
   <h2>[0.17.0] - 2023-09-19</h2>
   <ul>
   <li>
   <p>Support environment variables substituion for SQL and system commands.
   For compatibility, this feature is by default disabled, and can be enabled 
by adding <code>control substitution on</code> to the test file.</p>
   <pre><code>control substitution on
   <h2>query TTTT
   SELECT
   '$foo'                -- short
   , '${foo}'              -- long
   , '${bar:default}'      -- default value
   , '${bar:$foo-default}' -- recursive default value
   FROM baz;</h2>
   <p>...
   </code></pre></p>
   <p>Besides, there's a special variable <code>$__TEST_DIR__</code> which is 
the path to a temporary directory specific to the current test case.
   This can be helpful if you need to manipulate some external resources during 
the test.</p>
   <pre><code>control substitution on
   <p>statement ok
   COPY (SELECT * FROM foo) TO '$<strong>TEST_DIR</strong>/foo.txt';</p>
   <p>system ok
   echo &quot;foo&quot; &gt; &quot;$<strong>TEST_DIR</strong>/foo.txt&quot;
   </code></pre></p>
   <p>Changes:</p>
   <ul>
   <li>(parser) <strong>Breaking change</strong>: Add 
<code>Control::Substitution</code>. Mark <code>Control</code> as 
<code>#[non_exhaustive]</code>.</li>
   <li>(runner) <strong>Breaking change</strong>: Remove 
<code>enable_testdir</code>. For migration, one should now enable general 
substitution by the <code>control</code> statement and use a dollar-prefixed 
<code>$__TEST_DIR__</code>.</li>
   </ul>
   </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.17.0] - 2023-09-19</h2>
   <ul>
   <li>
   <p>Support environment variables substituion for SQL and system commands.
   For compatibility, this feature is by default disabled, and can be enabled 
by adding <code>control substitution on</code> to the test file.</p>
   <pre><code>control substitution on
   <h2>query TTTT
   SELECT
   '$foo'                -- short
   , '${foo}'              -- long
   , '${bar:default}'      -- default value
   , '${bar:$foo-default}' -- recursive default value
   FROM baz;</h2>
   <p>...
   </code></pre></p>
   <p>Besides, there's a special variable <code>$__TEST_DIR__</code> which is 
the path to a temporary directory specific to the current test case.
   This can be helpful if you need to manipulate some external resources during 
the test.</p>
   <pre><code>control substitution on
   <p>statement ok
   COPY (SELECT * FROM foo) TO '$<strong>TEST_DIR</strong>/foo.txt';</p>
   <p>system ok
   echo &quot;foo&quot; &gt; &quot;$<strong>TEST_DIR</strong>/foo.txt&quot;
   </code></pre></p>
   <p>Changes:</p>
   <ul>
   <li>(parser) <strong>Breaking change</strong>: Add 
<code>Control::Substitution</code>. Mark <code>Control</code> as 
<code>#[non_exhaustive]</code>.</li>
   <li>(runner) <strong>Breaking change</strong>: Remove 
<code>enable_testdir</code>. For migration, one should now enable general 
substitution by the <code>control</code> statement and use a dollar-prefixed 
<code>$__TEST_DIR__</code>.</li>
   </ul>
   </li>
   </ul>
   <h2>[0.16.0] - 2023-09-15</h2>
   <ul>
   <li>
   <p>Support running external system commands with the syntax below. This is 
useful for manipulating some external resources during the test.</p>
   <pre><code>system ok
   echo &quot;Hello, world!&quot;
   </code></pre>
   <p>The runner will check the exit code of the command, and the output will 
be ignored. Currently, only <code>ok</code> is supported.</p>
   <p>Changes:</p>
   <ul>
   <li>(parser) <strong>Breaking change</strong>: Add 
<code>Record::System</code>, and corresponding <code>TestErrorKind</code> and 
<code>RecordOutput</code>. Mark <code>TestErrorKind</code> and 
<code>RecordOutput</code> as <code>#[non_exhaustive]</code>.</li>
   <li>(runner) Add <code>run_command</code> to <code>AsyncDB</code> trait. The 
default implementation will run the command with 
<code>std::process::Command::status</code>. Implementors can override this 
method to utilize an asynchronous runtime such as <code>tokio</code>.</li>
   </ul>
   </li>
   <li>
   <p>fix(runner): fix database name duplication for parallel tests by using 
the <strong>full path</strong> of the test file (instead of the file name) as 
the database name.</p>
   </li>
   </ul>
   <h2>[0.15.3] - 2023-08-02</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/risinglightdb/sqllogictest-rs/commit/263aa0ca796bc035e6de098a426e704f3a1feb6d";><code>263aa0c</code></a>
 feat: general variable substitution (<a 
href="https://redirect.github.com/risinglightdb/sqllogictest-rs/issues/196";>#196</a>)</li>
   <li>See full diff in <a 
href="https://github.com/risinglightdb/sqllogictest-rs/compare/v0.16.0...v0.17.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to