mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 20:27:52 +00:00

Modified TableParser to ignore GENERATED columns from the columns list used to construct SELECTs/INSERTs
7 lines
233 B
SQL
7 lines
233 B
SQL
CREATE TABLE `t1` (
|
|
`ID` int(11) NOT NULL,
|
|
`Column2` int(11) DEFAULT NULL,
|
|
`Column3` int(11) GENERATED ALWAYS AS ((`Column2` + 1)) STORED,
|
|
PRIMARY KEY (`ID`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|