Re: [Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-26 Thread Jeeukrishnan Kayshyap.
Hi , in this reply what does parsing mean??The parsing done by parser right??Or "parsing some parts of query union" means something else in this reply?? So, if this reply means parsing of UNION will make it simple ,how it is going to do so?Can I get some insights about this ?Actually I have a

Re: [Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-25 Thread Jeeukrishnan Kayshyap.
Hi , in this reply what does parsing mean??The parsing done by parser right??The process of analyzing a string of symbols is parsing right ?? Or the parsing some parts of UNION query means something else in this reply? Sorry sir ,but I am not clear about the process to make it simpler ,not clear

Re: [Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-25 Thread Oleksandr Byelkin
Am 24.03.20 um 09:35 schrieb Jeeukrishnan Kayshyap.: Hi ,I am a GSoC aspirant . I am trying to solve https://jira.mariadb.org/browse/MDEV-13648 . Firstly , I discussed a  new algorithm with Igor Babev sir , but it was wrong as it will create space problem. Now , I am planning to add some

[Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-24 Thread Jeeukrishnan Kayshyap.
HI , to implement FULL OUTER JOIN between T1 and T2 can we do "T1 Left Outer Join T2 union all T2 Anti Join T1" ?? Is this method already tried ? Please guide me to solve this issue and if possible someone please reply to my last email. ___ Mailing

[Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-24 Thread Jeeukrishnan Kayshyap.
Hi ,I am a GSoC aspirant . I am trying to solve https://jira.mariadb.org/browse/MDEV-13648 . Firstly , I discussed a new algorithm with Igor Babev sir , but it was wrong as it will create space problem. Now , I am planning to add some code in Sql_yacc.yy : /*full join*/ after the right join

Re: [Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-23 Thread Oleksandr Byelkin
Hi, Jeeukrishnan! Am 21.03.20 um 15:05 schrieb Jeeukrishnan Kayshyap.: Hi  , I studied the join_table part of sql_yacc.yy and the the convert_right_join() part from sql_parse.cc . Sir to add the full outer join : if we add a /*Full outer join variant */ , where first we will do  left outer

[Maria-developers] Regarding GSoC : ADD FULL OUTER JOIN

2020-03-23 Thread Jeeukrishnan Kayshyap.
What are the other thing we need to consider if we include *st_select_lex::convert_full_join() similar to *st_select_lex::convert_right_join() ? ___ Mailing list: https://launchpad.net/~maria-developers Post to : maria-developers@lists.launchpad.net

[Maria-developers] Regarding GSoc :ADD FULL OUTER JOIN

2020-03-21 Thread Jeeukrishnan Kayshyap.
Hi , I studied the join_table part of sql_yacc.yy and the the convert_right_join() part from sql_parse.cc . Sir to add the full outer join : if we add a /*Full outer join variant */ , where first we will do left outer join and then right outer join in that , after that we can use the "UNION"