Zainab-Saad commented on PR #905:
URL: https://github.com/apache/age/pull/905#issuecomment-1546027528
@dehowef Yes, but including explicit typecast (with :: operator)can be done,
right?
like this:
```
SELECT * FROM cypher('test', $$
RETURN 0::bool
$$) as r(result int);
result
--------
1
(1 row)
```
And yes I get it that the following two should be reverted:
```
SELECT * FROM cypher('test', $$
RETURN 0
$$) as r(result bool);
```
and
```
SELECT agtype_to_bool(agtype_in('1'));
```
These both should give errors.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]