File tree 4 files changed +8
-10
lines changed 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ $dir = getenv('REDIR_TEST_DIR');
8
8
if (false == $ dir ) die ('skip no driver ' );
9
9
require_once $ dir . 'pdo_test.inc ' ;
10
10
PDOTest::skip ();
11
+ if (str_starts_with (getenv ('PDOTEST_DSN ' ), "firebird " )) die ('xfail firebird driver does not behave as expected ' );
11
12
12
13
$ db = PDOTest::factory ();
13
14
try {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ pdo_dblib
7
7
require __DIR__ . '/config.inc ' ;
8
8
?>
9
9
--CONFLICTS--
10
- pdo_dblib
10
+ all
11
11
--FILE--
12
12
<?php
13
13
require __DIR__ . '/config.inc ' ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ if (getenv('SKIP_REPEAT')) die('skip May fail on repeat');
8
8
require __DIR__ . '/config.inc ' ;
9
9
?>
10
10
--CONFLICTS--
11
- pdo_dblib
11
+ all
12
12
--FILE--
13
13
<?php
14
14
require __DIR__ . '/config.inc ' ;
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ LSAN_OPTIONS=detect_leaks=0
12
12
require ("testdb.inc " );
13
13
14
14
$ dbh ->setAttribute (PDO ::ATTR_ERRMODE , PDO ::ERRMODE_WARNING );
15
+ @$ dbh ->exec ('DROP TABLE test_ddl ' );
16
+ @$ dbh ->exec ('DROP GENERATOR gen_test_ddl_id ' );
17
+ @$ dbh ->exec ('DROP TRIGGER test_ddl_bi ' );
15
18
16
19
$ dbh ->exec ("CREATE TABLE test_ddl (id INT NOT NULL PRIMARY KEY, text BLOB SUB_TYPE 1) " );
17
20
$ dbh ->exec ("CREATE GENERATOR gen_test_ddl_id " );
@@ -29,18 +32,12 @@ $dbh->beginTransaction();
29
32
var_dump ($ dbh ->exec ("DELETE FROM test_ddl " ));
30
33
$ dbh ->commit ();
31
34
32
- unset($ dbh );
33
- echo "done \n" ;
34
- ?>
35
- --CLEAN--
36
- <?php
37
- require ("testdb.inc " );
38
- $ dbh ->setAttribute (PDO ::ATTR_ERRMODE , PDO ::ERRMODE_WARNING );
39
35
@$ dbh ->exec ('DROP TABLE test_ddl ' );
40
36
@$ dbh ->exec ('DROP GENERATOR gen_test_ddl_id ' );
41
37
@$ dbh ->exec ('DROP TRIGGER test_ddl_bi ' );
42
- unset($ dbh );
43
38
39
+ unset($ dbh );
40
+ echo "done \n" ;
44
41
?>
45
42
--EXPECT--
46
43
int(1)
You can’t perform that action at this time.
0 commit comments