Matty
Matty

Reputation: 34543

Does Postgres have an equilvalent of MySQL's collations?

MySQL has a big long list of collations, but I can't find whether Postgres has something analogous. Is there something similar that Postgres has?

Upvotes: 2

Views: 539

Answers (1)

Daniel Lyons
Daniel Lyons

Reputation: 22803

Judging from this page from the 9.1 documentation this looks like a forthcoming feature. With currently stable releases, it's a per-cluster configuration option. You can read more about this situation here.

Upvotes: 3

Related Questions