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:
parent
d324bea42a
commit
219a0f4ad2
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user