Follow the doc regarding contribution, http://docs.drizzle.org/contributing/code.html#code-label
On Thu, Jul 12, 2012 at 11:13 PM, Sriganesh Navaneethakrishnan <sriganesh1...@gmail.com> wrote: > I have the launchpad credentials...but I'm not able to push the commits to > launchpad...when I run vzr push its just waiting...no action is being > done...:-( > > On Jul 12, 2012 10:24 PM, "Mohit Srivastava" <srivastavamohi...@gmail.com> > wrote: >> >> Hi Sriganesh, >> >> For creating a branch , you just need a launchpad credentials. Create >> your account on launchpad and create your own branch related to your >> task. >> >> Here is Introduction: >> http://docs.drizzle.org/contributing/introduction.html >> >> And for contribution: >> http://docs.drizzle.org/contributing/code.html#code-label >> >> -- >> Mohit >> >> On Thu, Jul 12, 2012 at 4:39 PM, Sriganesh Navaneethakrishnan >> <sriganesh1...@gmail.com> wrote: >> > Mohit...i'm not a member of the drizzle developers yet, i'm not able to >> > push >> > the code. >> > who can i contact? >> > >> > >> > On Thu, Jul 12, 2012 at 11:55 AM, Sriganesh Navaneethakrishnan >> > <sriganesh1...@gmail.com> wrote: >> >> >> >> yes, it is the same as http_get() >> >> >> >> with one additional function call to libcurl >> >> >> >> curl_opt_set(curl, CURL_CUSTOMREQUEST, "http_delete"); >> >> >> >> thats it... >> >> >> >> >> >> i'm not able to push my branch to launchpad... >> >> >> >> >> >> On Wed, Jul 11, 2012 at 5:54 PM, Mohit Srivastava >> >> <srivastavamohi...@gmail.com> wrote: >> >>> >> >>> Hi , >> >>> I think there is some http_delete() also . >> >>> >> >>> Can you provide me a link to your branch so that I can check this >> >>> problem >> >>> ? >> >>> >> >>> -- >> >>> Mohit >> >>> >> >>> >> >>> On Wed, Jul 11, 2012 at 5:43 PM, Sriganesh Navaneethakrishnan >> >>> <sriganesh1...@gmail.com> wrote: >> >>> > done... here it is :) >> >>> > >> >>> > http://pastebin.com/mhCM5m3P >> >>> > >> >>> > >> >>> > On Wed, Jul 11, 2012 at 5:29 PM, Mohit Srivastava >> >>> > <srivastavamohi...@gmail.com> wrote: >> >>> >> >> >>> >> Hi, >> >>> >> please paste your "basic.test" at http://pastebin.com/ >> >>> >> >> >>> >> -- >> >>> >> Mohit >> >>> >> On Wed, Jul 11, 2012 at 3:51 PM, Sriganesh Navaneethakrishnan >> >>> >> <sriganesh1...@gmail.com> wrote: >> >>> >> > Hi, >> >>> >> > >> >>> >> > With Stewart's help i was able to introduce http_delete into the >> >>> >> > http_functions. >> >>> >> > To make it not dependent on CURL, we introduce a function call to >> >>> >> > lib_curl. >> >>> >> > >> >>> >> > curl= curl_easy_init(); >> >>> >> > curl_easy_setopt(curl, CURLOPT_URL, url->c_str()); >> >>> >> > curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, >> >>> >> > http_get_result_cb); >> >>> >> > curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&result); >> >>> >> > curl_easy_setopt(curl, CURLOPT_USERAGENT, >> >>> >> > "drizzle-http-functions/1.0"); >> >>> >> >>> curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST,"http_delete"); >> >>> >> > retref= curl_easy_perform(curl); >> >>> >> > >> >>> >> > >> >>> >> > i changed the test cases from >> >>> >> > >> >>> >> > --exec curl -X DELETE ' ' >> >>> >> > >> >>> >> > to >> >>> >> > >> >>> >> > select http_delete(" ") >> >>> >> > >> >>> >> > i changed the corresponding output in .result... >> >>> >> > >> >>> >> > >> >>> >> > but i'm not able to get the result passed... >> >>> >> > >> >>> >> > >> >>> >> > drizzletest: At line 58: query 'select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&_id=1") >> >>> >> > --exec curl >> >>> >> > >> >>> >> > 'http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people' >> >>> >> > >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%22_id%22%3A2%7D%7D") >> >>> >> > --exec curl >> >>> >> > >> >>> >> > 'http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people' >> >>> >> > >> >>> >> > select http_delete ("http://localhost:$JSON_SERVER_PORT/json") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%7D%7D") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%22_id%22%3A%22%22%7D%7D") >> >>> >> > SET GLOBAL json_server_allow_drop_table="ON"' failed: 1064: You >> >>> >> > have >> >>> >> > an >> >>> >> > error in your SQL syntax; check the manual that corresponds to >> >>> >> > your >> >>> >> > Drizzle >> >>> >> > server version for the right syntax to use near >> >>> >> > >> >>> >> > ''http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people' >> >>> >> > >> >>> >> > select http_' at line 2 >> >>> >> > >> >>> >> > The result from queries just before the failure was: >> >>> >> > < snip > >> >>> >> > "metadata" : { >> >>> >> > "dob" : "16-feb-1977", >> >>> >> > "interest" : "opensource", >> >>> >> > "nick" : "hingo" >> >>> >> > } >> >>> >> > } >> >>> >> > ], >> >>> >> > "sqlstate" : "00000" >> >>> >> > } >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&_id=1") >> >>> >> > --exec curl >> >>> >> > >> >>> >> > 'http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people' >> >>> >> > >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%22_id%22%3A2%7D%7D") >> >>> >> > --exec curl >> >>> >> > >> >>> >> > 'http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people' >> >>> >> > >> >>> >> > select http_delete ("http://localhost:$JSON_SERVER_PORT/json") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%7D%7D") >> >>> >> > select http_delete >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > ("http://localhost:$JSON_SERVER_PORT/json?schema=json&table=people&query=%7B%22query%22%3A%7B%22_id%22%3A%22%22%7D%7D") >> >>> >> > SET GLOBAL json_server_allow_drop_table="ON"; >> >>> >> > >> >>> >> > More results from queries before failure can be found in >> >>> >> > >> >>> >> > >> >>> >> > /home/sriganesh/repos/drizzle/drizzle-bug-SRIJIK/tests/var/log/basic.log >> >>> >> > >> >>> >> > >> >>> >> > can anybody help me out...? >> >>> >> > >> >>> >> > -- >> >>> >> > Regards, >> >>> >> > Sriganesh.N >> >>> >> > >> >>> >> > _______________________________________________ >> >>> >> > Mailing list: https://launchpad.net/~drizzle-discuss >> >>> >> > Post to : drizzle-discuss@lists.launchpad.net >> >>> >> > Unsubscribe : https://launchpad.net/~drizzle-discuss >> >>> >> > More help : https://help.launchpad.net/ListHelp >> >>> >> > >> >>> > >> >>> > >> >>> > >> >>> > >> >>> > -- >> >>> > Regards, >> >>> > Sriganesh.N >> >> >> >> >> >> >> >> >> >> -- >> >> Regards, >> >> Sriganesh.N >> > >> > >> > >> > >> > -- >> > Regards, >> > Sriganesh.N _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp