soumyakanti3578 commented on PR #4620: URL: https://github.com/apache/hive/pull/4620#issuecomment-1692558701
We could also add the `;` only when there is at least one `ALTER` after the `CREATE`. Currently for `SHOW CREATE TABLE`, we either get this: > create table test(...)...tblproperties(...) or this: > create table test(...)...tblproperties(...) > alter table....; > alter table....; > alter table....; But we can add the `;` in all but the last statement, so we'd either get this: > create table test(...)...tblproperties(...) or this: > create table test(...)...tblproperties(...); > alter table....; > alter table....; > alter table.... @ayushtkn @jfsii @zabetak @kasakrisz @scarlin-cloudera What do you all think? -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org