mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-06-18 12:20:40 +00:00
add support for compress option table create for DB2
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9671 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
@ -485,6 +485,12 @@ sub buildcreatestmt
|
||||
$retv .= " ENGINE=$descr->{engine} ";
|
||||
}
|
||||
}
|
||||
# allow compression for DB2
|
||||
if ($descr->{compress}) {
|
||||
if ($xcatcfg =~ /^DB2:/) { #for DB2
|
||||
$retv .= " compress $descr->{compress} ";
|
||||
}
|
||||
}
|
||||
# allow tablespace change for DB2
|
||||
if ($descr->{tablespace}) {
|
||||
if ($xcatcfg =~ /^DB2:/) { #for DB2
|
||||
|
Reference in New Issue
Block a user