From e8e32cc50815921abb378e6520d4b811b0a55039 Mon Sep 17 00:00:00 2001 From: Pierre Rineau Date: Tue, 16 Apr 2024 15:46:44 +0200 Subject: [PATCH] version bump to 1.3.3 --- CHANGELOG.md | 2 +- src/Platform/Schema/SQLServerSchemaManager.php | 5 ----- src/Platform/Schema/SQLiteSchemaManager.php | 5 ----- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89fbe7b..6a9344d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Next +## 1.3.3 * [feature] ⭐️ Experimental table index list in schema manager. * [internal] Enable SQLite via PDO in unit tests. diff --git a/src/Platform/Schema/SQLServerSchemaManager.php b/src/Platform/Schema/SQLServerSchemaManager.php index 0fb0938..bf198b6 100644 --- a/src/Platform/Schema/SQLServerSchemaManager.php +++ b/src/Platform/Schema/SQLServerSchemaManager.php @@ -490,11 +490,6 @@ protected function getTableIndexes(string $database, string $schema, string $nam { $ret = []; - // pg_index.indkey is an int2vector, this a deprecated type that must - // not be used in pgsql. There are no functions to convert it to array - // and it simply return a space-separated list of values we need then - // to explode in order to extract column numbers. This is the only way - // in the catalog to get indexes keys *in order*. $result = $this ->session ->executeQuery( diff --git a/src/Platform/Schema/SQLiteSchemaManager.php b/src/Platform/Schema/SQLiteSchemaManager.php index 66d2ff8..ddb2b7a 100644 --- a/src/Platform/Schema/SQLiteSchemaManager.php +++ b/src/Platform/Schema/SQLiteSchemaManager.php @@ -297,11 +297,6 @@ protected function getTableIndexes(string $database, string $schema, string $nam { $ret = []; - // pg_index.indkey is an int2vector, this a deprecated type that must - // not be used in pgsql. There are no functions to convert it to array - // and it simply return a space-separated list of values we need then - // to explode in order to extract column numbers. This is the only way - // in the catalog to get indexes keys *in order*. $result = $this ->session ->executeQuery(