Rob Burrowes
Rob Burrowes
If I understand your tests correctly, then the simple test would be replicas of the 'fields' tests. This would test for the simple case of a single table, single database...
Tried it myself, and this works Added to the typedef for struct mysql2_result_wrapper in result.h `VALUE tables; ` Added to result.c ``` static VALUE rb_mysql_result_fetch_table(VALUE self, unsigned int idx) {...
How do I open a PR?
I think I have created a proposal. It shows up as pull request 1267 It created a fork [email protected]:rbur004/mysql2.git, which I cloned and made the changes to added access to...
I think I went through that step successfully. It is awaiting approval 
I just added a couple of simple tests to specs/mysql2/result_spec.rb They are clones of the 'fields' test, and only cover the very simple case of one table and one database....
I am seeing the same thing. If I use mode lines or mode line+markers, I don't see the lines drawn. If I hover the mouse over a point, I do...
The cause looks to be bad data in my x_axis. There were points that were set to an empty string (ie. ""). If I set these correctly, then I do...
with mariadb you don't have a root password anymore, so it is mysql < /usr/share/zoneminder/db/zm_create.sql mysql -e "grant lock tables,alter,drop,select,insert,update,delete,create,index,alter routine,create routine, trigger,execute,references on zm.* to 'zmuser'@localhost identified by 'zmpass';"
Going through a temporary file, so there is only ever one S3 connection active at a time, works fine. ```python def s3copys3(src_session, src_endpoint, src_bucket, dest_session, dest_endpoint, dest_bucket, url): source_s3_url =...