Skip to content

Commit

Permalink
version bump to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pounard committed Apr 16, 2024
1 parent 1816a67 commit e8e32cc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 0 additions & 5 deletions src/Platform/Schema/SQLServerSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
5 changes: 0 additions & 5 deletions src/Platform/Schema/SQLiteSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit e8e32cc

Please sign in to comment.