Log Message:
---
Updates to SQL generation. Now seem to pass all tests that don't require
lateral join (CROSS APPLY in Sql Server)
Modified Files:
--
Npgsql2/src/Npgsql/SqlGenerators:
SqlSelectGenerator.cs (r1.6 -> r1.7)
(http://cvs.pgfoundry.org/cgi-bin/
Log Message:
---
Allow I/O conversion casts to be applied to or from any type that is a member
of the STRING type category, thereby opening up the mechanism for user-defined
types. This is mainly for the benefit of citext, though; there aren't likely
to be a lot of types that are all gener
Log Message:
---
Flip the default typispreferred setting from true to false. This affects
only type categories in which the previous coding made *every* type
preferred; so there is no change in effective behavior, because the function
resolution rules only do something different when faced
Log Message:
---
Ensure no crashes will null parameter to deserialise. It seems that from
plpgsql even with the function defined strict, a call with null is possible.
Modified Files:
--
veil/src:
veil_interface.c (r1.10 -> r1.11)
(http://cvs.pgfoundry.org/
Log Message:
---
Fixes for properly handling nulls in veil interface functions.
Modified Files:
--
veil/docs:
Doxyfile (r1.12 -> r1.13)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/veil/veil/docs/Doxyfile.diff?r1=1.12&r2=1.13)
veil/src:
veil_int
Log Message:
---
Adjust citext to make use of the new ability to declare its type category:
by putting it into the standard string category, we cause casts from citext
to text to be recognized as "preferred" casts. This eliminates the need
for creation of alias functions and operators that
Log Message:
---
Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()
with system catalog lookups, as was foreseen to be necessary almost since
their creation. Instead put the information into two new pg_type columns,
typcategory and typispreferred. Add support fo