MatheusFarias03 opened a new pull request, #808:
URL: https://github.com/apache/age/pull/808

   Messages like _"merging column <column name> with inherited definition"_ do 
not appear anymore when creating an inherited vertex or edge.
   
   Before:
   ```sql
   SELECT create_vlabel('cypher_create', 'parent_vlabel');
   NOTICE:  VLabel "parent_vlabel" has been created
    create_vlabel 
   ---------------
    
   (1 row)
   
   SELECT create_vlabel('cypher_create', 'child_vlabel_one', 
ARRAY['parent_vlabel']);
   NOTICE:  VLabel child_vlabel_one will inherit from parent_vlabel
   NOTICE:  merging column "id" with inherited definition
   NOTICE:  merging column "properties" with inherited definition
   NOTICE:  VLabel "child_vlabel_one" has been created
    create_vlabel 
   ---------------
    
   (1 row)
   ```
   
   After:
   ```sql
   SELECT create_vlabel('cypher_create', 'parent_vlabel');
   NOTICE:  VLabel "parent_vlabel" has been created
    create_vlabel 
   ---------------
    
   (1 row)
   
   SELECT create_vlabel('cypher_create', 'child_vlabel_one', 
ARRAY['parent_vlabel']);
   NOTICE:  VLabel child_vlabel_one will inherit from parent_vlabel
   NOTICE:  VLabel "child_vlabel_one" has been created
    create_vlabel 
   ---------------
    
   (1 row)
   ```
   
   Checked VLE also and it works fine with this alteration.


-- 
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]

Reply via email to