|
|
@@ -117,6 +117,7 @@ export class FulltextSearchService {
|
|
|
switch (this.connection.rawConnection.options.type) {
|
|
|
case 'mysql':
|
|
|
case 'mariadb':
|
|
|
+ case 'aurora-data-api':
|
|
|
this._searchStrategy = new MysqlSearchStrategy();
|
|
|
break;
|
|
|
case 'sqlite':
|
|
|
@@ -125,6 +126,8 @@ export class FulltextSearchService {
|
|
|
this._searchStrategy = new SqliteSearchStrategy();
|
|
|
break;
|
|
|
case 'postgres':
|
|
|
+ case 'aurora-data-api-pg':
|
|
|
+ case 'cockroachdb':
|
|
|
this._searchStrategy = new PostgresSearchStrategy();
|
|
|
break;
|
|
|
default:
|