I have a text file with millions of rows.
Example: sorage.txt
foo
bar
baz
File was loaded as follows:
LOAD DATA INFILE '/var/lib/mysql-files/sorage.txt'
INTO TABLE `storage` (@word)
SET col1 = @word, col2 = CONCAT('prefix_', @word)
Afterwards I doesn't see any rows in the storage
table. But table statistics shows that rows exist.
I'm using MySQL 5.7 and HeidiSQL as GUI.
Pic 1
Pic 2
Why there are no rows?
Update 1
Using terminal - 0 rows.