Re: [PR] fix: normalize column names in table constraints [datafusion]

2025-02-22 Thread via GitHub
jonahgao merged PR #14794: URL: https://github.com/apache/datafusion/pull/14794 -- 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...@dataf

Re: [PR] fix: normalize column names in table constraints [datafusion]

2025-02-22 Thread via GitHub
jonahgao commented on code in PR #14794: URL: https://github.com/apache/datafusion/pull/14794#discussion_r1966477882 ## datafusion/sqllogictest/test_files/ddl.slt: ## @@ -828,3 +828,39 @@ drop table table_with_pk; statement ok set datafusion.catalog.information_schema = false;

Re: [PR] fix: normalize column names in table constraints [datafusion]

2025-02-21 Thread via GitHub
alamb commented on code in PR #14794: URL: https://github.com/apache/datafusion/pull/14794#discussion_r1965402509 ## datafusion/sqllogictest/test_files/ddl.slt: ## @@ -828,3 +828,39 @@ drop table table_with_pk; statement ok set datafusion.catalog.information_schema = false;

[PR] fix: normalize column names in table constraints [datafusion]

2025-02-20 Thread via GitHub
jonahgao opened a new pull request, #14794: URL: https://github.com/apache/datafusion/pull/14794 ## Which issue does this PR close? - Closes #14340. ## Rationale for this change Normalize the constraint columns in the same way as the table columns. ## What