Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Shlomi Noach <[email protected]>
  • Loading branch information
shlomi-noach committed May 31, 2021
1 parent b987a79 commit c8cabfe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions go/test/endtoend/onlineddl/ghost/onlineddl_ghost_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ var (
ALTER TABLE %s
DROP COLUMN ghost_col`
onlineDDLCreateTableStatement = `
CREATE TABLE %s (
id bigint NOT NULL,
online_ddl_create_col INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;`
CREATE TABLE %s (
id bigint NOT NULL,
online_ddl_create_col INT NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;`
noPKCreateTableStatement = `
CREATE TABLE %s (
online_ddl_create_col INT NOT NULL
) ENGINE=InnoDB;`
CREATE TABLE %s (
online_ddl_create_col INT NOT NULL
) ENGINE=InnoDB;`
onlineDDLDropTableStatement = `
DROP TABLE %s`
onlineDDLDropTableIfExistsStatement = `
Expand Down

0 comments on commit c8cabfe

Please sign in to comment.