mingfang opened a new issue, #1639:
URL: https://github.com/apache/age/issues/1639
If I add a new column to a vlabel table, then I will not be able to drop
that column.
Here are the steps to reproduce
```sql
-- create test graph and table
SELECT * FROM ag_catalog.create_graph('drop_column');
SELECT ag_catalog.create_vlabel('drop_column', 'table1');
-- add new column
ALTER TABLE drop_column.table1 ADD COLUMN col1 TEXT;
-- fail to drop with error: ERROR: table "table1" is for label "table1"
ALTER TABLE drop_column.table1 DROP COLUMN col1;
```
It's almost as if AGE thinks I'm trying to drop the entire table and not
just a column.
--
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]