https://bugs.kde.org/show_bug.cgi?id=467766
--- Comment #12 from Petr Schonmann <pschonm...@gmail.com> --- from table file i removed tables which doenst contain imageid column. root@nas:~# for table in $(cat tables);do echo -n "$table : " && mysql -D digikam -NBe "SELECT count(*) FROM $table WHERE imageid IS NULL;";echo;done ImageComments : 0 ImageCopyright : 0 ImageHaarMatrix : 0 ImageHistory : 0 ImageInformation : 0 ImageMetadata : 0 ImagePositions : 0 ImageProperties : 0 ImageTagProperties : 0 root@nas:~# for table in Images;do echo -n "$table : " && mysql -D digikam -NBe "SELECT count(*) FROM $table WHERE id IS NULL;";echo;done Images : 0 root@nas:~# for table in Images;do echo -n "$table : " && mysql -D digikam -NBe "SELECT count(*) FROM $table WHERE id = 0;";echo;done Images : 0 -- You are receiving this mail because: You are watching all bug changes.