Merge lp://staging/~clint-fewbar/gearmand/fix-sql-regression into lp://staging/gearmand/1.0
Proposed by
Clint Byrum
Status: | Merged |
---|---|
Merged at revision: | 440 |
Proposed branch: | lp://staging/~clint-fewbar/gearmand/fix-sql-regression |
Merge into: | lp://staging/gearmand/1.0 |
Diff against target: |
22 lines (+2/-3) 1 file modified
libgearman-server/plugins/queue/drizzle/queue.cc (+2/-3) |
To merge this branch: | bzr merge lp://staging/~clint-fewbar/gearmand/fix-sql-regression |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Gearman-developers | Pending | ||
Review via email: mp+59064@code.staging.launchpad.net |
Description of the change
Fix for borken SQL
To post a comment you must log in.
Thanks, I'll pull it into the build tree in a moment.
I also have an update on that tree to disable epoch if the schema is not updated.
On Apr 26, 2011, at 7:18 AM, Clint Byrum wrote:
> Clint Byrum has proposed merging lp:~clint-fewbar/gearmand/fix-sql-regression into lp:gearmand. developers) server/ plugins/ queue/drizzle/ queue.cc " /bugs.launchpad .net/gearmand/ +bug/770654 /code.launchpad .net/~clint- fewbar/ gearmand/ fix-sql- regression/ +merge/ 59064 /code.launchpad .net/~clint- fewbar/ gearmand/ fix-sql- regression/ +merge/ 59064 server/ plugins/ queue/drizzle/ queue.cc' server/ plugins/ queue/drizzle/ queue.cc 2011-04-05 23:59:40 +0000 server/ plugins/ queue/drizzle/ queue.cc 2011-04-26 14:18:28 +0000 table.c_ str(), GEARMAN_ UNIQUE_ SIZE); ((unique_ size + function_name_size + data_size) * 2) + GEARMAN_ QUEUE_QUERY_ BUFFER) ; snprintf( query.c_ str(), query.size(), %u,when_ to_run= %lldunique_ key='", %u,when_ to_run= %lld,unique_ key='", table.c_ str(), (uint32_t)priority,
>
> Requested reviews:
> Gearman-developers (gearman-
> Related bugs:
> Bug #770654 in Gearman: "Two SQL typos in libgearman-
> https:/
>
> For more details, see:
> https:/
>
> Fix for borken SQL
> --
> https:/
> Your team Gearman-developers is requested to review the proposed merge of lp:~clint-fewbar/gearmand/fix-sql-regression into lp:gearmand.
> === modified file 'libgearman-
> --- libgearman-
> +++ libgearman-
> @@ -263,9 +263,8 @@
> "function_name VARCHAR(255),"
> "priority INT,"
> "data LONGBLOB,"
> + "when_to_run INT,"
> "unique key (unique_key, function_name)"
> - "data LONGBLOB,"
> - "when_to_run INT"
> ")",
> queue->
>
> @@ -352,7 +351,7 @@
> query.resize(
>
> size_t query_size= (size_t)
> - "INSERT INTO %s SET priority=
> + "INSERT INTO %s SET priority=
> queue->
> (long long unsigned int)when);
>
>