From 340c39acfa165990150b68ac52d11dbdc2003eba Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 6 May 2019 00:02:36 +0200 Subject: [PATCH] Remove duplicate test file Files ext/oci8/tests/field_funcs0.phpt and ext/oci8/tests/field_funcs.phpt are the same. --- ext/oci8/package.xml | 1 - ext/oci8/tests/field_funcs0.phpt | 108 ------------------------------- 2 files changed, 109 deletions(-) delete mode 100644 ext/oci8/tests/field_funcs0.phpt diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml index 6278b5748e..52e32f12f4 100644 --- a/ext/oci8/package.xml +++ b/ext/oci8/package.xml @@ -318,7 +318,6 @@ Internal change: Convert some parameter parsing to the Fast Parameter Parsing AP - diff --git a/ext/oci8/tests/field_funcs0.phpt b/ext/oci8/tests/field_funcs0.phpt deleted file mode 100644 index 1432dcd4c0..0000000000 --- a/ext/oci8/tests/field_funcs0.phpt +++ /dev/null @@ -1,108 +0,0 @@ ---TEST-- -oci_field_*() family ---SKIPIF-- - true, 'timesten' => false); // test runs on these DBs -require(__DIR__.'/skipif.inc'); -?> ---FILE-- - $field) { - $num++; - var_dump(oci_field_is_null($s, $num)); - var_dump(oci_field_name($s, $num)); - var_dump(oci_field_type($s, $num)); - var_dump(oci_field_type_raw($s, $num)); - var_dump(oci_field_scale($s, $num)); - var_dump(oci_field_precision($s, $num)); - var_dump(oci_field_size($s, $num)); -} - - -require __DIR__.'/drop_table.inc'; - -echo "Done\n"; - -?> ---EXPECT-- -array(5) { - [0]=> - string(1) "1" - [1]=> - string(1) "1" - [2]=> - NULL - [3]=> - NULL - [4]=> - NULL -} -bool(false) -string(2) "ID" -string(6) "NUMBER" -int(2) -int(-127) -int(0) -int(22) -bool(false) -string(5) "VALUE" -string(6) "NUMBER" -int(2) -int(-127) -int(0) -int(22) -bool(true) -string(4) "BLOB" -string(4) "BLOB" -int(113) -int(0) -int(0) -int(4000) -bool(true) -string(4) "CLOB" -string(4) "CLOB" -int(112) -int(0) -int(0) -int(4000) -bool(true) -string(6) "STRING" -string(8) "VARCHAR2" -int(1) -int(0) -int(0) -int(10) -Done -- 2.40.0