Ivan Panchenko

Results 4 issues of Ivan Panchenko

If a user defines a new type, say ` CREATE DOMAIN positive_int AS int CHECK (value >= 0);` and then selects an array of such type, like ` SELECT ARRAY[1,2,3]::positive_int[];`...

Input section of an operation can have no elements, in this case WSDL parsing crushed. The patch fixes this, the example is shown in the added test.

The querychanged event exposed to public. Necessary for programming interaction between fields in forms. For example, one can invalidate fields dependent on a typeahead field.

A request header like `Cookie: x=1; y=2; z=3` was not parsed correctly: we got $request->headers containing `"cookies+y"` and `"cookies+z"` keys, but not `"cookies+x"` The present pull request contains test and...