You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
http://www.postgresql.org/docs/9.1/static/locale.html notes that databases uses locale specific sorting. Because the tests do not create their own database, they are dependent on the locale of the database. This breaks the sorting test.
simple-query-tests.js.....Message: undefined
AssertionError: "Brian" == "Aaron"
at /var/www/node-postgres/test/integration/client/simple-query-tests.js:33:14
at test (/var/www/node-postgres/test/test-helper.js:145:16)
at null.<anonymous> (/var/www/node-postgres/test/integration/client/simple-query-tests.js:32:5)
at assert.emits (/var/www/node-postgres/test/test-helper.js:46:16)
at g (events.js:185:14)
at EventEmitter.emit (events.js:88:17)
at p.handleReadyForQuery (/var/www/node-postgres/lib/query.js:81:8)
at p.connect.con.on.self.activeQuery (/var/www/node-postgres/lib/client.js:121:24)
at EventEmitter.emit (events.js:115:20)
at Socket.p.connect (/var/www/node-postgres/lib/connection.js:75:14)
The text was updated successfully, but these errors were encountered:
http://www.postgresql.org/docs/9.1/static/locale.html notes that databases uses locale specific sorting. Because the tests do not create their own database, they are dependent on the locale of the database. This breaks the sorting test.
Using xxx_pattern_ops (http://www.postgresql.org/docs/9.1/interactive/indexes-opclass.html) the test could enforce English sorting.
The text was updated successfully, but these errors were encountered: