mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-29 01:21:37 +00:00
Fix MockSyncStream.t for pre-DBD::mysql 4.001.
This commit is contained in:
@@ -110,7 +110,7 @@ SKIP: {
|
||||
id => 'integer',
|
||||
i => 'integer',
|
||||
f => 'float',
|
||||
d => 'decimal',
|
||||
d => $DBD::mysql::VERSION ge '4.001' ? 'decimal' : 'varchar',
|
||||
dt => 'timestamp',
|
||||
ts => 'timestamp',
|
||||
c => 'char',
|
||||
@@ -122,7 +122,7 @@ SKIP: {
|
||||
id => 1,
|
||||
i => 1,
|
||||
f => 1,
|
||||
d => 1,
|
||||
d => $DBD::mysql::VERSION ge '4.001' ? 1 : 0,
|
||||
dt => 0,
|
||||
ts => 0,
|
||||
c => 0,
|
||||
@@ -170,7 +170,7 @@ SKIP: {
|
||||
id => undef,
|
||||
i => undef,
|
||||
f => '(31,12)',
|
||||
d => '(7,2)',
|
||||
d => $DBD::mysql::VERSION ge '4.001' ? '(7,2)' : '(7)',
|
||||
dt => undef,
|
||||
ts => undef,
|
||||
c => '(1)',
|
||||
|
Reference in New Issue
Block a user