Does anyone know why query like
INSERT INTO some_table SET aaa=LOAD_FILE( 'some_path\non_existing_filename' ) doesn't raise an exception? And how do you I know that error took place? I glanced through API but didn't find anything about errors except exceptions ;-)
The similar one LOAD DATA INFILE 'bla-bla-bla' INTO TABLE some_table does raise.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Does anyone know why query like
INSERT INTO some_table SET aaa=LOAD_FILE( 'some_path\non_existing_filename' ) doesn't raise an exception? And how do you I know that error took place? I glanced through API but didn't find anything about errors except exceptions ;-)
The similar one LOAD DATA INFILE 'bla-bla-bla' INTO TABLE some_table does raise.