|
View:
New views
9 Messages
—
Rating Filter:
Alert me
|
|
|
Attention for developers working with HEADAll,
Please avoid committing any big changes into HEAD for some time, as the tree is still under review after the merge with the ExtEngines branch. I will post an explicit green light here once it would be allowed to proceed. Thanks for understanding. Dmitry ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEADAll,
> I will post an explicit green light here once it would be allowed to proceed. Now HEAD is open for bulk commits again. Thanks for your patience. But, provided that we're getting more and more active with the v3 development, please post a small message here every time you're about to commit something really big, so that we wouldn't have stepped on each other's changes. As for myself, I have the SCROLLABLE_CURSORS code cleanup completed and ready to be committed. Other major stuff from myself will follow later with warnings in advance. Thanks, Dmitry ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEAD> -----Original Message-----
> From: Dmitry Yemanov [mailto:firebird2@...] > Sent: Viernes, 30 de Octubre de 2009 8:17 > > But, provided that we're getting more and more active with the v3 > development, please post a small message here every time > you're about to > commit something really big, so that we wouldn't have stepped on each > other's changes. I have the code that standardizes utilities' argument parsing, but first I want to know who else has pending code to commit. I touched approximately 55 files. > As for myself, I have the SCROLLABLE_CURSORS code cleanup > completed and > ready to be committed. Hmm, I forgot to say that's better to clean rse.cpp in stages (at least two commits) because it's tricky, but it seems I came too late. :-) C. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEADClaudio Valderrama C. escreveu:
>> As for myself, I have the SCROLLABLE_CURSORS code cleanup >> completed and >> ready to be committed. >> > > Hmm, I forgot to say that's better to clean rse.cpp in stages (at least two > commits) because it's tricky, but it seems I came too late. > :-) I have new AggregateRsb class. I'll wait for Dmitry changes as they certainly conflicts. What it does: refactor the rse as for virtual tables, and get "group by" functions from evl and encapsulate it. I wonder what could be "clean rse in stages". I used it to progress with PARTITION BY code. I'll stage this, but see no reason to do the same for the aggregate handling. Adriano ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEAD> -----Original Message-----
> From: Adriano dos Santos Fernandes [mailto:adrianosf@...] > Sent: Viernes, 30 de Octubre de 2009 9:10 > > I wonder what could be "clean rse in stages". I once isolated even more scrollable cursors code in rse.cpp than what's in the public tree, but the changes were too obvious unless you get rid first of the already marked places, then proceed to more subtle remaining parts. There's dead code that's not ifdef'ed. C. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEADOn Friday 30 October 2009 15:32:10 Claudio Valderrama C. wrote:
> > -----Original Message----- > > From: Adriano dos Santos Fernandes [mailto:adrianosf@...] > > Sent: Viernes, 30 de Octubre de 2009 9:10 > > > > I wonder what could be "clean rse in stages". > > I once isolated even more scrollable cursors code in rse.cpp than what's in > the public tree, but the changes were too obvious unless you get rid first > of the already marked places, then proceed to more subtle remaining parts. > There's dead code that's not ifdef'ed. Hope that my changes in common/classes/alloc.* and some minor posix build changes will not conflict with others. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEADAdriano dos Santos Fernandes wrote:
> I have new AggregateRsb class. I'll wait for Dmitry changes as they > certainly conflicts. I will commit tonight. > What it does: refactor the rse as for virtual tables, and get "group by" > functions from evl and encapsulate it. This change does certainly conflict with my next patch which pretends to refactor the whole RSB thing into classes ;-) But as I'm only half way done yet, feel free to commit first and I'll integrate your changes to proceed further. Dmitry ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEADClaudio Valderrama C. wrote:
> > I have the code that standardizes utilities' argument parsing, but first I > want to know who else has pending code to commit. I touched approximately 55 > files. I don't think your patch affects the JRD/DSQL/REMOTE stuff much, doesn't it? Dmitry ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
|
|
Re: Attention for developers working with HEAD> -----Original Message-----
> From: Dmitry Yemanov [mailto:firebird2@...] > Sent: Viernes, 30 de Octubre de 2009 13:31 > > Claudio Valderrama C. wrote: > > > > I have the code that standardizes utilities' argument > parsing, but first I > > want to know who else has pending code to commit. I touched > approximately 55 > > files. > > I don't think your patch affects the JRD/DSQL/REMOTE stuff > much, doesn't it? jrd: very small changes in common.h, svc.cpp and svc.h. dsql: nothing remote: nothing. C. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference Firebird-Devel mailing list, web interface at https://lists.sourceforge.net/lists/listinfo/firebird-devel |
| Free embeddable forum powered by Nabble | Forum Help |