24.12.2015 18:22, Dmitry Yemanov wrote:
>> >Yes. But in this case the hash is only used internally and not stored
>> >anywhere. Because
>> >of this, different platforms can use different algorithms for it.
> Of course, but then it should be encapsulated and moved to /common to
> avoid the same #if
Hi!
Imagine this:
create function f1(n integer) returns varchar(20) external name ...
engine ...
Then when compiling this function, the external engine (maybe due to the
info in the 'name' string), want to receive the 'n' parameter as VARCHAR.
But the caller calls f1 with (10.2) argument.
What