Hi. I want to ask about the purpose from this sentence from sql.php, between lines 339, 343
$cmd=[
'sqlite2?'=>[
'SELECT * FROM pragma_table_info('.$this->quote($table).') JOIN ('.
'SELECT sql FROM sqlite_master WHERE (type=\'table\' OR type=\'view\') AND '.
'name='.$this->quote($table).')',
In my case, f3 doesnt detect pragma_table_info and sqlite master so I split into two sentences.
pragma table_info('.$this->quote($table).')',
However, I dont find the reason from this
'SELECT sql FROM sqlite_master WHERE (type=\'table\' OR type=\'view\') AND '.
'name='.$this->quote($table).')',
I check and It works well without her, So, what it is the purpose from this line?
Thank you.