forums › forums › SQLyog › SQLyog: Bugs / Feature Requests › New export-bug
- This topic is empty.
-
AuthorPosts
-
-
June 30, 2005 at 6:44 pm #18437
Ritesh
MemberThis bug comes when you export resultset or table data?
-
June 30, 2005 at 6:59 pm #18438
peterlaursen
ParticipantQuote:This bug comes when you export resultset or table data?Table! Right-clicking on table in object-browser.
The bug is new. Was not in 4.06 and 4.07 Beta1 (not sure about beta2). It is reproduced on MySQL 4.0.24 and 5.0.7
-
June 30, 2005 at 7:37 pm #18439
peterlaursen
ParticipantOther examples that fail
/*Data for the table `tablename1` */
insert into `tablename1` values (NULL,abcd);
insert into `tablename1` values (NULL,efgh);
insert into `tablename1` values (NULL,ijkl);
insert into `tablename1` values (NULL,mnop);
/*Data for the table `tablename1` */
insert into `tablename1` values (NULL,abcd);
insert into `tablename1` values (NULL,efgh);
insert into `tablename1` values (NULL,ijkl);
insert into `tablename1` values (NULL,mnop);
/*Data for the table `tablename1` */
insert into `tablename1` values (NULL,abcd);
insert into `tablename1` values (NULL,efgh);
insert into `tablename1` values (NULL,ijkl);
insert into `tablename1` values (NULL,mnop);
The following examples show that it is related to “NULL-fix”
With these examples numerical field is auto-increment (and thus not NULL)
and insert-stmts are correct
/*Data for the table `tablename1` */
insert into `tablename1` values (1,'abcd');
insert into `tablename1` values (2,'efgh');
insert into `tablename1` values (3,'ijkl');
insert into `tablename1` values (4,'mnop');
/*Data for the table `tablename1` */
insert into `tablename1` values (1,'a\b\c\d');
insert into `tablename1` values (2,'efgh');
insert into `tablename1` values (3,'i\j\k\l');
insert into `tablename1` values (4,'mnop');
-
July 1, 2005 at 7:27 am #18440
Ritesh
MemberBug confirmed and fixed. Fix will be available from 4.07 RC2.
-
July 1, 2005 at 10:10 pm #18441
peterlaursen
ParticipantI confirm that all export/import issues with 4.06 and 4.07 betas discussed here and here http://www.webyog.com/forums/index.php?act…t=ST&f=6&t=1504 are fixed.
😀
-
-
AuthorPosts
- You must be logged in to reply to this topic.