From a39edab96eca5d4a69a40bda6bfc549d81515659 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 17 May 2021 10:25:52 +0200 Subject: [PATCH] Skip float truncation test under libmysql We don't return native types for libmysql, so this test doesn't make sense. --- ext/pdo_mysql/tests/bug79596.phpt | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/pdo_mysql/tests/bug79596.phpt b/ext/pdo_mysql/tests/bug79596.phpt index 185b2e60b14..b71bbd5d8c9 100644 --- a/ext/pdo_mysql/tests/bug79596.phpt +++ b/ext/pdo_mysql/tests/bug79596.phpt @@ -6,6 +6,7 @@ require_once(__DIR__ . DIRECTORY_SEPARATOR . 'skipif.inc'); require_once(__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc'); MySQLPDOTest::skip(); if (!setlocale(LC_ALL, 'de_DE', 'de-DE')) die('skip German locale not available'); +if (!MySQLPDOTest::isPDOMySQLnd()) die('skip libmysql returns result as string'); ?> --FILE--