inconsistent table name quoting by the random data generator
Bug #961630 reported by
Patrick Crews
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Random Query Generator |
Fix Committed
|
Medium
|
Patrick Crews |
Bug Description
The random data generator is inconsistent in how it quotes table names:
Note the DROP TABLE and INSERT statements vs. the CREATE TABLE and ALTER TABLE statements.
DROP TABLE /*! IF EXISTS*/ c;
CREATE TABLE `c` (
`col_char_255` char(255),
ALTER TABLE `c` DISABLE KEYS;
INSERT /*! IGNORE */ INTO c VALUES ('k', 'j', 'jcszxwbj', NULL, -656211968, 'r', 'cszxwb', 'TTNNK', -1458634752, NULL, 'l', 2, 'szxwbjj') ;
COMMIT;
ALTER TABLE `c` ENABLE KEYS;
Related branches
lp://staging/~patrick-crews/randgen/bug961630
Approved
for merging
into
lp://staging/randgen
- Philip Stoev: Approve
-
Diff: 21 lines (+2/-2)1 file modifiedlib/GenTest/App/Gendata.pm (+2/-2)
Changed in randgen: | |
status: | New → Fix Committed |
importance: | Undecided → Low |
assignee: | nobody → Patrick Crews (patrick-crews) |
importance: | Low → Medium |
To post a comment you must log in.