From: Abbas B. <abb...@en...> - 2013-08-08 09:31:53
Attachments:
10_1_date.patch
|
Hi, PFA patch to fix date tests needing order by. -- Abbas Architect Ph: 92.334.5100153 Skype ID: gabbasb www.enterprisedb.com Follow us on Twitter @EnterpriseDB Visit EnterpriseDB for tutorials, webinars, whitepapers and more |
From: Masataka S. <pg...@gm...> - 2013-08-09 04:31:24
|
It will work. But it took a bit time to understand that selectSQL("testdate order by i", "dt")) is expanded to "SELECT dt FROM testdate order by i" because the first argument name of selectSQL is "table". You'd better use selectSQL (String table, String columns, String where, String other) rather than selectSQL(String table, String columns). On Thu, Aug 8, 2013 at 6:31 PM, Abbas Butt <abb...@en...> wrote: > Hi, > PFA patch to fix date tests needing order by. > > -- > Abbas > Architect > > Ph: 92.334.5100153 > Skype ID: gabbasb > www.enterprisedb.com > > Follow us on Twitter > @EnterpriseDB > > Visit EnterpriseDB for tutorials, webinars, whitepapers and more > > ------------------------------------------------------------------------------ > Get 100% visibility into Java/.NET code with AppDynamics Lite! > It's a free troubleshooting tool designed for production. > Get down to code-level detail for bottlenecks, with <2% overhead. > Download for free and get started troubleshooting in minutes. > http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers > |
From: Abbas B. <abb...@en...> - 2013-08-10 06:05:05
Attachments:
10_2_date.patch
|
PFA revised patch. On Fri, Aug 9, 2013 at 9:31 AM, Masataka Saito <pg...@gm...> wrote: > It will work. But it took a bit time to understand that > selectSQL("testdate order by i", "dt")) is expanded to "SELECT dt FROM > testdate order by i" because the first argument name of selectSQL is > "table". > You'd better use selectSQL (String table, String columns, String > where, String other) rather than selectSQL(String table, String > columns). > > On Thu, Aug 8, 2013 at 6:31 PM, Abbas Butt <abb...@en...> wrote: >> Hi, >> PFA patch to fix date tests needing order by. >> >> -- >> Abbas >> Architect >> >> Ph: 92.334.5100153 >> Skype ID: gabbasb >> www.enterprisedb.com >> >> Follow us on Twitter >> @EnterpriseDB >> >> Visit EnterpriseDB for tutorials, webinars, whitepapers and more >> >> ------------------------------------------------------------------------------ >> Get 100% visibility into Java/.NET code with AppDynamics Lite! >> It's a free troubleshooting tool designed for production. >> Get down to code-level detail for bottlenecks, with <2% overhead. >> Download for free and get started troubleshooting in minutes. >> http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk >> _______________________________________________ >> Postgres-xc-developers mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers >> -- -- Abbas Architect Ph: 92.334.5100153 Skype ID: gabbasb www.enterprisedb.com Follow us on Twitter @EnterpriseDB Visit EnterpriseDB for tutorials, webinars, whitepapers and more |
From: Masataka S. <pg...@gm...> - 2013-08-20 05:55:35
|
It's fine. On Sat, Aug 10, 2013 at 3:04 PM, Abbas Butt <abb...@en...> wrote: > PFA revised patch. > > > On Fri, Aug 9, 2013 at 9:31 AM, Masataka Saito <pg...@gm...> wrote: >> It will work. But it took a bit time to understand that >> selectSQL("testdate order by i", "dt")) is expanded to "SELECT dt FROM >> testdate order by i" because the first argument name of selectSQL is >> "table". >> You'd better use selectSQL (String table, String columns, String >> where, String other) rather than selectSQL(String table, String >> columns). >> >> On Thu, Aug 8, 2013 at 6:31 PM, Abbas Butt <abb...@en...> wrote: >>> Hi, >>> PFA patch to fix date tests needing order by. >>> >>> -- >>> Abbas >>> Architect >>> >>> Ph: 92.334.5100153 >>> Skype ID: gabbasb >>> www.enterprisedb.com >>> >>> Follow us on Twitter >>> @EnterpriseDB >>> >>> Visit EnterpriseDB for tutorials, webinars, whitepapers and more >>> >>> ------------------------------------------------------------------------------ >>> Get 100% visibility into Java/.NET code with AppDynamics Lite! >>> It's a free troubleshooting tool designed for production. >>> Get down to code-level detail for bottlenecks, with <2% overhead. >>> Download for free and get started troubleshooting in minutes. >>> http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk >>> _______________________________________________ >>> Postgres-xc-developers mailing list >>> Pos...@li... >>> https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers >>> > > > > -- > -- > Abbas > Architect > > Ph: 92.334.5100153 > Skype ID: gabbasb > www.enterprisedb.com > > Follow us on Twitter > @EnterpriseDB > > Visit EnterpriseDB for tutorials, webinars, whitepapers and more |