-
Notifications
You must be signed in to change notification settings - Fork 408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a question about the function of the agtype json operator in version 1.5.0 #1521
Comments
@shinhanbyeol What version of PG is this on, what version of PG did it previously work on? |
@jrgemignani 1.5 ,1.4 Both were done in pg 14 version |
@shinhanbyeol There appears to be something weird with the definition of |
|
Yes, looking into this |
@Zainab-Saad Thank you! |
The error you are getting is because the operator In the query You can read why specific operator is choosen when |
This issue is stale because it has been open 45 days with no activity. Remove "Abondoned" label or comment or this will be closed in 7 days. |
This issue was closed because it has been stalled for further 7 days with no activity. |
i have a question about the phenomenon found in the version of age 1.5.0
The json operator function was fine in 1.4.0 as below query
select properties->'ott' from ott_service_1.ott_company;
However, starting with 1.5.0 and later versions
When you create a query, such as version 1.4.0
ERROR: invalid input syntax for type agtype error occurs, however
select properties-> 'ott'::text as ott_company_name from netflix_2.ott;
I did type casting like this, and the problem was solved.
Is this the phenomenon intended in 1.5.0? and Will this continue in future versions?
The text was updated successfully, but these errors were encountered: