ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilDBPdoMySQLInnoDB.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
26 {
27  protected string $storage_engine = 'InnoDB';
28 
29  #[\Override]
30  public function supportsFulltext(): bool
31  {
32  return false;
33  }
34 
35 
36  #[\Override]
37  public function supportsTransactions(): bool
38  {
39  return false;
40  }
41 
42 
43  #[\Override]
44  public function addFulltextIndex(string $table_name, array $fields, string $name = 'in'): bool
45  {
46  return false; // NOT SUPPORTED
47  }
48 }
Class ilDBPdoMySQL.
addFulltextIndex(string $table_name, array $fields, string $name='in')
Class ilDBPdoMySQLInnoDB.