Re: [Maria-developers] Analysis of the same name of field and name check constraints

2018-04-23 Thread Anel Husakovic
Hi Vincentiu, Sorry but I have seen now, after sending the mail, that example in this mail is not relevant, please take a look in a example in PR. Regards, Anel On Mon, Apr 23, 2018 at 12:45 PM, Anel Husakovic wrote: > Hi Vicentiu, > > Regarding the check constraints with *field *a

Re: [Maria-developers] MDEV 18092

2019-01-03 Thread Anel Husakovic
n 12/28/2018 02:12 PM, Anel Husakovic wrote: > > Hi Alexander, > > my name is Anel, and I'm working for Foundation. > > I would like to take/ https://jira.mariadb.org/browse/MDEV-18092/ if > > you allow me, and would appreciate any hint in order to learn more about >

Re: [Maria-developers] Review for follow up fix of MDEV-17323: Backport INFORMATION_SCHEMA.CHECK_CONSTRAINTS to 10.2

2019-01-31 Thread Anel Husakovic
st you use git cherry-pick next time when backporting a patch to get > the correct changes. This also helps with merges later, as a change in 10.2 > will be easily reconcileable in 10.3. > > Moving onwards with the patch, you will find other comments inline. > > > > &

Re: [Maria-developers] MDEV-7381

2020-02-11 Thread Anel Husakovic
Hi Gabriel, thank you for expressing the interest to work on this issue. You can just leave the comment in Jira, just saying that you are going to work on it, so others could know also about. After that it would be great to submit a pull request. I already have assigned the MDEV to myself and I wil

Re: [Maria-developers] 0d05c9f8699: Add mytop to Client component for rpm package

2020-10-13 Thread Anel Husakovic
Hi Serg, Added new commit addressing your review, thanks: https://github.com/MariaDB/server/commit/660374b542639642e825079fd065333f7531cde9 On Thu, Oct 8, 2020 at 3:24 PM Sergei Golubchik wrote: > Hi, Anel! > > About the diff to 1.9, I tend to agree that our mytop is a superset. > I did have som

Re: [Maria-developers] 203aa38f9b6: MDEV-26102: gcov 9.1 doesn't support intermediate format any more, but json instead - refactoring needed

2021-07-28 Thread Anel Husakovic
Hi Serg, thanks for your review. > > + > > +my $gcc_version= `gcc -dumpversion`; > > +$gcc_version=~ s/(\d).*$/$1/; > > you don't need this second line, I suspect > > It is not unique for all versions, that's why I used it: $ for i in 5 6 7 9 10; do $(/usr/bin/gcc-$i -dumpversion); done 5.5.0: c

Re: [Maria-developers] 203aa38f9b6: MDEV-26102: gcov 9.1 doesn't support intermediate format any more, but json instead - refactoring needed

2021-07-29 Thread Anel Husakovic
Hi Serg, On Thu, Jul 29, 2021 at 9:57 AM Sergei Golubchik wrote: > Hi, Anel! > > On Jul 29, Anel Husakovic wrote: > > Hi Serg, > > thanks for your review. > > > > > > + > > > > +my $gcc_version= `gcc -dumpversion`; > > > > +$gcc_