melgenek opened a new pull request, #5148: URL: https://github.com/apache/arrow-datafusion/pull/5148
# Which issue does this PR close? Closes #5147. # Rationale for this change In sqllogictest tests I could write a query for Datafusion like this one ``` select arrow_typeof(null and null), arrow_typeof(null or null); ``` I would like to write the same query for Postgres, so that not only values are checked for compatibility but also types ``` select pg_typeof(null and null), pg_typeof(null or null); ``` # What changes are included in this PR? This pr includes handling of `regtype` results in Postgres sqllogictest client. # Are these changes tested? Github actions # Are there any user-facing changes? Sqllogictest only -- 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]
