test: fix postgres tests after tweak to make mssql work with test type macros

This commit is contained in:
Ryan Leckey 2020-06-06 13:34:50 -07:00
parent 18ae43aae8
commit 95149c4e4a

View file

@ -199,6 +199,6 @@ macro_rules! Sqlite_query_for_test_prepared_type {
#[macro_export]
macro_rules! Postgres_query_for_test_prepared_type {
() => {
"SELECT {0} is not distinct from $1, {0}, $2"
"SELECT ({0} is not distinct from $1)::int4, {0}, $2"
};
}