lowka commented on PR #2719:
URL: https://github.com/apache/ignite-3/pull/2719#issuecomment-1770859570

   Maybe we can need to add an end-to-end test (because I haven't found one) ? 
Something like this (it works):
   
   >sql("CREATE TABLE known_views (id int, val VARCHAR, PRIMARY KEY (id) ) ");
   >
   >sql("INSERT INTO known_views VALUES(1, 'SYSTEM_VIEWS')");
   >sql("INSERT INTO known_views VALUES(2, 'SYSTEM_VIEW_COLUMNS')");
   >
   >assertQuery("SELECT s.schema, s.name FROM PUBLIC.known_views, 
SYSTEM.SYSTEM_VIEWS as s " + 
   >    "WHERE s.name = PUBLIC.known_views.val ORDER BY s.name")
   >   .returns("SYSTEM", "SYSTEM_VIEW_COLUMNS")
   >    .returns("SYSTEM", "SYSTEM_VIEWS")
   >    .check();
   
   


-- 
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