You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2022/09/23 16:20:50 UTC

[GitHub] [age] Johan511 opened a new issue, #309: Facing errors while trying to make install the repo

Johan511 opened a new issue, #309:
URL: https://github.com/apache/age/issues/309

   I would like to contribute to this project and have tried to make the clone of the repo on my local system, during which I faced the following errors
   
   Database : postgres 14
   
   **src/backend/catalog/ag_catalog.c:97:68: error: incompatible type for argument 4 of ‘prev_process_utility_hook’**
   prev_process_utility hook requires 8 arguments but, only 7 were passed. The repo does not pass the bool readOnlyTree argument
   
   typedef void (*ProcessUtility_hook_type) (PlannedStmt *pstmt, const char *queryString, bool readOnlyTree, ProcessUtilityContext context, ParamListInfo params, QueryEnvironment *queryEnv, DestReceiver *dest, QueryCompletion *qc);
   
   
   **src/backend/catalog/ag_catalog.c:100:62: error: incompatible type for argument 4 of ‘standard_ProcessUtility’**
   standard_ProcessUtility is a function which requires 8 arguments but, only 7 were passed. The repo does not pass the bool readOnlyTree argument
   
   extern void standard_ProcessUtility(PlannedStmt *pstmt, const char *queryString, bool readOnlyTree, ProcessUtilityContext context, ParamListInfo params, QueryEnvironment *queryEnv, DestReceiver *dest, QueryCompletion *qc);
   
   I had greedily tried to fix these issues by setting readOnlyTree to false and tried compiling and still face this issue
   
   **src/backend/catalog/ag_graph.c:67:15: error: void value not ignored as it ought to be**
   src/backend/catalog/ag_graph.c:67 is
   graph_oid = CatalogTupleInsert(ag_graph, tuple);
   
   CatalogTupleInsert returns void while graph_oid has type short int.
   
   I am very enthusiastic to try and fix these issues and be a part of the age community and would appreciate any suggestions on how I could fix the issues.
   
   


-- 
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: dev-unsubscribe@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Johan511 closed issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
Johan511 closed issue #309: Facing errors while trying to make install the repo
URL: https://github.com/apache/age/issues/309


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Johan511 commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
Johan511 commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1256584564

   Hi, can you guide me on use postgresql 11 source/header files during installation of the age extension. I have installed age and tried running make but still have the same 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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] jrgemignani commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1256602744

   Here is a link that should help.
   
   https://age.apache.org/age-manual/master/index.html


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] jrgemignani commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1256706301

   Please see this issue -
   
   https://github.com/apache/age/issues/300
   
   


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] jrgemignani commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1256518241

   PostgreSQL 14 is currently not supported. Currently, only PostgreSQL versions 11 & 12 are supported. 
   
   Version 13 is being worked on and then 14 will be after that.


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Johan511 commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
Johan511 commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1256698487

   I have been following the age manual and have still got the same errors mentioned above


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] jrgemignani commented on issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #309:
URL: https://github.com/apache/age/issues/309#issuecomment-1262569966

   If this is resolved, please close the issue :)


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] Johan511 closed issue #309: Facing errors while trying to make install the repo

Posted by GitBox <gi...@apache.org>.
Johan511 closed issue #309: Facing errors while trying to make install the repo
URL: https://github.com/apache/age/issues/309


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org