From 94ae2a781df133c2bfe69879c05554dfe7c02ccf Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Tue, 3 Aug 2010 19:04:30 -0700 Subject: [PATCH] no need to carry over options twice as we're already doing it up in rb_mysql_client_async_result --- ext/mysql2/client.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/mysql2/client.c b/ext/mysql2/client.c index dd99784..9573e8f 100644 --- a/ext/mysql2/client.c +++ b/ext/mysql2/client.c @@ -290,9 +290,6 @@ static VALUE rb_mysql_client_query(int argc, VALUE * argv, VALUE self) { VALUE result = rb_mysql_client_async_result(self); - // pass-through query options for result construction later - rb_iv_set(result, "@query_options", rb_obj_dup(opts)); - return result; } else { return Qnil;