-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
ALTER TABLE - event-listener records don't provide the table name #24537
Comments
Can you verify if the info shows up in the web UI please |
Yes, I see the events in the web ui. |
Great is the table info there also missing? |
@mosabua You can simply reproduce this issue with |
I think we don't support capturing events for |
@Praveen2112 Raising events for ALTER events is supported. I see them in the event listeners. But the table and schema names are empty. |
When a table is altered by the
ALTER TABLE
command (column added, dropped, or renamed), the table names are not included in the triggered events received in thequeryCompleted
method of theio.trino.spi.eventlistener.EventListener
interface.All of these are empty:
This is an example of the SQL alter command:
alter table sqlserver_sa.dbo.persons add column zip varchar
The text was updated successfully, but these errors were encountered: