If there are comments in CREATE TABLE, the column definition following the comment won't be wrapped and placed at the same line as the previous column.
CREATE TABLE IF NOT EXISTS hello
(
foo char(20) NOT NULL UNIQUE,
-- A comment
bar char(25),
abc integer
);
gets
CREATE TABLE IF NOT EXISTS hello (
foo char(20) NOT NULL UNIQUE, bar char(25),
abc integer
);
If there are comments in
CREATE TABLE
, the column definition following the comment won't be wrapped and placed at the same line as the previous column.gets