dependabot[bot] opened a new pull request, #10388: URL: https://github.com/apache/datafusion/pull/10388
Updates the requirements on [sqlparser](https://github.com/sqlparser-rs/sqlparser-rs) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sqlparser-rs/sqlparser-rs/blob/main/CHANGELOG.md">sqlparser's changelog</a>.</em></p> <blockquote> <h2>[0.45.0] 2024-04-12</h2> <h3>Added</h3> <ul> <li>Support <code>DateTimeField</code> variants: <code>CUSTOM</code> and <code>WEEK(MONDAY)</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1191">#1191</a>) - Thanks <a href="https://github.com/iffyio"><code>@iffyio</code></a></li> <li>Support for arbitrary expr in <code>MapAccessSyntax</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1179">#1179</a>) - Thanks <a href="https://github.com/iffyio"><code>@iffyio</code></a></li> <li>Support unquoted hyphen in table/view declaration for BigQuery (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1178">#1178</a>) - Thanks <a href="https://github.com/iffyio"><code>@iffyio</code></a></li> <li>Support <code>CREATE/DROP SECRET</code> for duckdb dialect (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1208">#1208</a>) - Thanks <a href="https://github.com/JichaoS"><code>@JichaoS</code></a></li> <li>Support MySQL <code>UNIQUE</code> table constraint (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1164">#1164</a>) - Thanks <a href="https://github.com/Nikita-str"><code>@Nikita-str</code></a></li> <li>Support tailing commas on Snowflake. (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1205">#1205</a>) - Thanks <a href="https://github.com/yassun7010"><code>@yassun7010</code></a></li> <li>Support <code>[FIRST | AFTER column_name]</code> in <code>ALTER TABLE</code> for MySQL (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1180">#1180</a>) - Thanks <a href="https://github.com/xring"><code>@xring</code></a></li> <li>Support inline comment with hash syntax for BigQuery (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1192">#1192</a>) - Thanks <a href="https://github.com/iffyio"><code>@iffyio</code></a></li> <li>Support named windows in OVER (window_definition) clause (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1166">#1166</a>) - Thanks <a href="https://github.com/Nikita-str"><code>@Nikita-str</code></a></li> <li>Support PARALLEL ... and for ..ON NULL INPUT ... to CREATE FUNCTION` (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1202">#1202</a>) - Thanks <a href="https://github.com/dimfeld"><code>@dimfeld</code></a></li> <li>Support DuckDB functions named arguments with assignment operator (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1195">#1195</a>) - Thanks <a href="https://github.com/alamb"><code>@alamb</code></a></li> <li>Support DuckDB struct literal syntax (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1194">#1194</a>) - Thanks <a href="https://github.com/gstvg"><code>@gstvg</code></a></li> <li>Support <code>$$</code> in generic dialect ... (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1185">#1185</a>)- Thanks <a href="https://github.com/milenkovicm"><code>@milenkovicm</code></a></li> <li>Support row_alias and col_aliases in <code>INSERT</code> statement for MySQL and Generic dialects (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1136">#1136</a>) - Thanks <a href="https://github.com/emin100"><code>@emin100</code></a></li> </ul> <h3>Fixed</h3> <ul> <li>Fix dollar quoted string tokenizer (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1193">#1193</a>) - Thanks <a href="https://github.com/ZacJW"><code>@ZacJW</code></a></li> <li>Do not allocate in <code>impl Display</code> for <code>DateTimeField</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1209">#1209</a>) - Thanks <a href="https://github.com/alamb"><code>@alamb</code></a></li> <li>Fix parse <code>COPY INTO</code> stage names without parens for SnowFlake (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1187">#1187</a>) - Thanks <a href="https://github.com/mobuchowski"><code>@mobuchowski</code></a></li> <li>Solve stack overflow on RecursionLimitExceeded on debug builds (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1171">#1171</a>) - Thanks <a href="https://github.com/Nikita-str"><code>@Nikita-str</code></a></li> <li>Fix parsing of equality binary operator in function argument (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1182">#1182</a>) - Thanks <a href="https://github.com/jmhain"><code>@jmhain</code></a></li> <li>Fix some comments (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1184">#1184</a>) - Thanks <a href="https://github.com/sunxunle"><code>@sunxunle</code></a></li> </ul> <h3>Changed</h3> <ul> <li>Cleanup <code>CREATE FUNCTION</code> tests (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1203">#1203</a>) - Thanks <a href="https://github.com/alamb"><code>@alamb</code></a></li> <li>Parse <code>SUBSTRING FROM</code> syntax in all dialects, reflect change in the AST (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1173">#1173</a>) - Thanks <a href="https://github.com/lovasoa"><code>@lovasoa</code></a></li> <li>Add identifier quote style to Dialect trait (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1170">#1170</a>) - Thanks <a href="https://github.com/backkem"><code>@backkem</code></a></li> </ul> <h2>[0.44.0] 2024-03-02</h2> <h3>Added</h3> <ul> <li>Support EXPLAIN / DESCR / DESCRIBE [FORMATTED | EXTENDED] (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1156">#1156</a>) - Thanks <a href="https://github.com/jonathanlehtoalamb"><code>@jonathanlehtoalamb</code></a></li> <li>Support ALTER TABLE ... SET LOCATION (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1154">#1154</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support <code>ROW FORMAT DELIMITED</code> in Hive (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1155">#1155</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support <code>SERDEPROPERTIES</code> for <code>CREATE TABLE</code> with Hive (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1152">#1152</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support <code>EXECUTE ... USING</code> for Postgres (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1153">#1153</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support Postgres style <code>CREATE FUNCTION</code> in GenericDialect (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1159">#1159</a>) - Thanks <a href="https://github.com/alamb"><code>@alamb</code></a></li> <li>Support <code>SET TBLPROPERTIES</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1151">#1151</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support <code>UNLOAD</code> statement (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1150">#1150</a>) - Thanks <a href="https://github.com/jonathanlehto"><code>@jonathanlehto</code></a></li> <li>Support <code>MATERIALIZED CTEs</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1148">#1148</a>) - Thanks <a href="https://github.com/ReppCodes"><code>@ReppCodes</code></a></li> <li>Support <code>DECLARE</code> syntax for snowflake and bigquery (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1122">#1122</a>) - Thanks <a href="https://github.com/iffyio"><code>@iffyio</code></a></li> <li>Support <code>SELECT AS VALUE</code> and <code>SELECT AS STRUCT</code> for BigQuery (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1135">#1135</a>) - Thanks <a href="https://github.com/lustefaniak"><code>@lustefaniak</code></a></li> <li>Support <code>(+)</code> outer join syntax (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1145">#1145</a>) - Thanks <a href="https://github.com/jmhain"><code>@jmhain</code></a></li> <li>Support <code>INSERT INTO ... SELECT ... RETURNING</code>(<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1132">#1132</a>) - Thanks <a href="https://github.com/lovasoa"><code>@lovasoa</code></a></li> <li>Support DuckDB <code>INSTALL</code> and <code>LOAD</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1127">#1127</a>) - Thanks <a href="https://github.com/universalmind303"><code>@universalmind303</code></a></li> <li>Support <code>=</code> operator in function args (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1128">#1128</a>) - Thanks <a href="https://github.com/universalmind303"><code>@universalmind303</code></a></li> <li>Support <code>CREATE VIEW IF NOT EXISTS</code> (<a href="https://redirect.github.com/sqlparser-rs/sqlparser-rs/issues/1118">#1118</a>) - Thanks <a href="https://github.com/7phs"><code>@7phs</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sqlparser-rs/sqlparser-rs/compare/v0.45.0...v0.45.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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org