Bugs in v2.10.68.1
Posted: Thu 04 Oct 2007 08:24
I use MyDevStudio v2.10.68.1 (russian edition) but I also have license for english edition.
MySQL server version: 5.0.32-Debian_7etch1-log Debian etch distribution.
I found some bugs:
1. Can't display more than 1 constraint for a table in the object tree.
2. Can't display SQL code for a view created using mysql console.
Create view in mysql console:
When edit this view in MyDevStudio it shows code:
3. When edit table it looses option "on update current_timestamp" for timestamp column.
Create table in mysql console:
When edit this table in MyDevStudio it becomes:
4. Can't edit comment for an InnoDB-table.
5. Can't edit list of united tables for a MERGE-table.
MySQL server version: 5.0.32-Debian_7etch1-log Debian etch distribution.
I found some bugs:
1. Can't display more than 1 constraint for a table in the object tree.
2. Can't display SQL code for a view created using mysql console.
Create view in mysql console:
Code: Select all
create view test_user as select * from mysql.user;
Code: Select all
CREATE
ALGORITHM = UNDEFINED
VIEW test.test_user
AS
;
Create table in mysql console:
Code: Select all
create table test (
ts timestamp not null default current_timestamp on update current_timestamp
);
Code: Select all
CREATE TABLE test.test (
ts TIMESTAMP(0) NOT NULL DEFAULT CURRENT_TIMESTAMP
)
ENGINE = MYISAM
CHARACTER SET utf8 COLLATE utf8_general_ci;
5. Can't edit list of united tables for a MERGE-table.