This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch PG13
in repository https://gitbox.apache.org/repos/asf/age.git


The following commit(s) were added to refs/heads/PG13 by this push:
     new bd8085a0 Removed unnecessary assignment (#1188)
bd8085a0 is described below

commit bd8085a0201595bd03d7f4a26f90c3e13af0852d
Author: Rafsun Masud <[email protected]>
AuthorDate: Fri Aug 25 12:44:34 2023 -0700

    Removed unnecessary assignment (#1188)
    
    Original work was done by Panagiotis Foliadis in PR #1035.
    
    Co-authored-by: Panagiotis Foliadis <[email protected]>
---
 src/backend/parser/cypher_clause.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/backend/parser/cypher_clause.c 
b/src/backend/parser/cypher_clause.c
index b66696e3..0fac1ec9 100644
--- a/src/backend/parser/cypher_clause.c
+++ b/src/backend/parser/cypher_clause.c
@@ -4363,10 +4363,6 @@ static Node *make_qual(cypher_parsestate *cpstate,
         char *entity_name;
         ColumnRef *cr = makeNode(ColumnRef);
 
-        // cast graphid to agtype
-        qualified_name = list_make2(makeString("ag_catalog"),
-                                    makeString("graphid_to_agtype"));
-
         if (entity->type == ENT_EDGE)
         {
             entity_name = entity->entity.node->name;

Reply via email to