Rob Burrowes

Results 11 issues of Rob Burrowes

Code to add methods to result.c to access the query result's array of MYSQL_FIELDs, to access the MYSQL_FIELD.table and MYSQL_FIELD.db as Ruby Arrays of Strings. The code allows introspection of...

Is there a way to get the field table names from a query. I have a lot of multi table queries, where different tables have the same field names. When...

# Description The first 330 lines of the file disappeared. I have only seen this on this one file. The others seem to be fine (Though I hope I haven't...

#### Problem description Be sure your description clearly answers the following questions: - What are you trying to achieve? S3 to separate S3 copy. i.e. an object copy between completely...

bug
Hacktoberfest
help wanted

I am seeing diffs for lines that only have an extra space in them. e.g. ![image](https://user-images.githubusercontent.com/145761/173474768-e309c8ef-e7f7-463f-bafb-128a31994f3a.png) and, this, which has a space after the '#' ![image](https://user-images.githubusercontent.com/145761/173474824-1293b4bf-767a-4aab-b3f7-caba9d91130c.png)

For some hosts, if :ignore_oid_order=>true, I'm getting an infinite loop from walk, with the last oid being returned over and over, but with a NULL value, after the first time....

manager.get(["1.3.6.1.4.1.674.10892.5.4.600.60.1.7.1.1"]) works manager.walk(["1.3.6.1.4.1.674.10892.5.4.600.60.1.7.1.1"]) has no results (same oid) manager.walk(["1.3.6.1.4.1.674.10892.5.4.600.60.1.7.1"]) works too, giving one result. (oid less last .1) I noticed this a while ago, and changed to using get for...

In Image::from_pgm, the test for a valid pgm file is wrong. ``` image_data = string.gsub(/^(P5)\s([0-9]+)\s([0-9]+)\s([0-9]+)\s/, '') if $1 != 'P5' raise ArgumentError, "input must be a PGM file" end ```...

I just upgraded from ruby 2.6 to 3.1.2 and from a mySQL 5 DB to MariaDB 10.6.7 I now get this ServerGoneError when I do a query. I was originally...

Not sure if it is intended behaviour, but IPAddr.new('10.0.0.0/16') == IPAddr.new('10.0.0.0/8') is true, when these are not the same network. The test should be def ==(value) @addr == value.addr &&...