I ran this standard query and it executes successfully.
EXPORT DATA
OPTIONS (
uri = 'https://pubsub.googleapis.com/projects/ggdevbigqueryproject/topics/GGTEST',
format = 'JSON',
overwrite = false
)
AS
(select * from `ggdevbigqueryproject.QASOURCE.TCUSTMER`);
But no messages are pushed to pub/sub topic GGTEST.
I tried the above query where table exist under same project. I am expecting table data to be pushed as JSON messages in pub/sub topic.