jasonmelbye
jasonmelbye
I believe the parser should look at the scalar data style attribute. Consider this redefinition of libyaml.event:event-scalar-data ``` lisp (defun event-scalar-data (event) (let* ((scalar (scalar-pointer event)) (anchor (foreign-slot-value scalar '(:struct...
I've been reading the yaml spec, and now I think there is no bug here. YAML uses tags to specify data type [0]. If no tag is provided then (assuming...
I left a question in #yaml last night to confirm my understanding. I was pointed to the bottom of Section 9.6.1 http://www.yaml.org/spec/1.2/spec.html#id2784064: See example 6.28 and the text right before...
I wonder if this issue is perhaps not related to the quoting. I setup the same deftable form. When I compile it, I receive this error: DB Error: You have...
After some additional investigation, it looks like it is possible to execute multiple statements against a mysql database with one call to dbi:execute - but the proper flag needs to...
I'm using a postgresql database and migrations do not appear to be taking place. In the migrations directory, a new sexp representation of my table is saved with the changes....
Based on your select output, it looks like the migration did not take place for you. Shouldn't we be expecting that the column foo was added? I get the correct...
The immediate test failure that my pull request caused has to do with the adding a null constraint producing a nil query value. The logic in alter-constraint needs to be...