Shreyaskr1409 commented on issue #15093: URL: https://github.com/apache/datafusion/issues/15093#issuecomment-2708280185
@irenjj , as per https://github.com/apache/datafusion/pull/14032 ValuesExec is deprecated. I tried running some simple queries which I thought would work like: ```sql explain VALUES (1); ```` when I tried running it, I got the following results: ``` + logical_plan Values: (Int64(1)) + physical_plan + 01)┌───────────────────────────┐ + 02)│ DataSourceExec │ + 03)│ -------------------- │ + 04)│ bytes: 128 │ + 05)│ format: memory │ + 06)│ rows: 1 │ + 07)└───────────────────────────┘ ``` Could this be because of the deprecation? Is there something which I could do to figure out why this isn't working out? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
