test: postgres: fix query string (form -> from)

This commit is contained in:
Ryan Leckey 2020-03-11 02:48:20 -07:00
parent c14338d329
commit 63200a5044

View File

@ -93,6 +93,6 @@ macro_rules! MySql_query_for_test_prepared_type {
#[macro_export]
macro_rules! Postgres_query_for_test_prepared_type {
() => {
"SELECT {} is not distinct form $1, $2 as _1"
"SELECT {} is not distinct from $1, $2 as _1"
};
}