You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the only way to subscribe to messages via SQL is to run stream * from msg_tbl. It seems like it should be trivial to add support to the parser for column selection, stream col1, col2 from msg_tbl for someone with experience with yacc. Once there is parser support, I can make sure that it plumbs through messages properly. cc @systay https://github.com/vitessio/vitess/blob/master/go/vt/sqlparser/sql.y#L413-L417
select_expression was used instead of select_expression_list in both the AST and the yacc. You'd need to change both in order to plumb it out correctly.
Currently the only way to subscribe to messages via SQL is to run
stream * from msg_tbl
. It seems like it should be trivial to add support to the parser for column selection,stream col1, col2 from msg_tbl
for someone with experience with yacc. Once there is parser support, I can make sure that it plumbs through messages properly. cc @systayhttps://github.com/vitessio/vitess/blob/master/go/vt/sqlparser/sql.y#L413-L417
#5882
The text was updated successfully, but these errors were encountered: