Closed brunoenten closed 2 years ago
Can one of the admins verify this patch?
Test this, please
mmm... the webhook looks OK, but nothing was launched.
Test this, please
?
Looks to me that something is broken after the last Jenkins update. I see the comments being detected, but no job is being launched.
Will review it later.
Ah, it's just delayed :-?
Strange.
Test PASSed.
As everything is green, could a maintener please merge the PR?
Sorry for the delay, @brunoenten. This PR has been merged. Thanks!
Dummy relabeling seems to be an internal postgres mechanism to handle casting between two binary-compatible datatypes.
I ran into an issue while using a condition on a varchar column coerced to text.
Without this fix, this postgres query
SELECT ... FROM ... WHERE this_col_is_a_varchar::text ~~ 'burp%';
generates something like
SELECT ... FROM ... WHERE this_vol_is_a_varchar as text like 'burp%';
which triggers a syntax error. I'm pretty sure passing this relabeling mechanism along is not necessary.
See https://github.com/postgres/postgres/blob/845cad4d51cb12a34ea012dfe58af5ef490384fc/src/include/nodes/primnodes.h#L837