File tree 4 files changed +9
-10
lines changed 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'mysql') {
24
24
}
25
25
}
26
26
?>
27
+ --CONFLICTS--
28
+ firebird
27
29
--FILE--
28
30
<?php
29
31
if (getenv ('REDIR_TEST_DIR ' ) === false ) putenv ('REDIR_TEST_DIR= ' .__DIR__ . '/../../pdo/tests/ ' );
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