File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ procedure TFDBTests.test(manager: TFDBManager);
142
142
md.free;
143
143
end ;
144
144
end ;
145
- end ;
145
+
146
146
Writeln(' t4' );
147
147
assertTrue(conn.CountSQL(' Select count(*) from TestTable' ) = 0 , ' dbt.0' );
148
148
@@ -257,11 +257,14 @@ procedure TFDBTests.test(manager: TFDBManager);
257
257
conn.DropTable(' TestTable' );
258
258
Writeln(' t15' );
259
259
end ;
260
- md := conn.FetchMetaData;
261
- try
262
- assertFalse(md.HasTable(' TestTable' ), ' dbt.38' )
263
- finally
264
- md.free;
260
+ if { $IFDEF LINUX} conn.Owner.Platform <> kdbMySQL { $ELSE} true { $ENDIF} then
261
+ begin
262
+ md := conn.FetchMetaData;
263
+ try
264
+ assertFalse(md.HasTable(' TestTable' ), ' dbt.38' )
265
+ finally
266
+ md.free;
267
+ end ;
265
268
end ;
266
269
Writeln(' t16' );
267
270
You can’t perform that action at this time.
0 commit comments