[jOOQ/jOOQ#12807] Parse and ignore Teradata's COMPRESS DDL clauses
This commit is contained in:
parent
3183de684f
commit
8f48695151
@ -4539,6 +4539,7 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
boolean onUpdate = false;
|
||||
boolean unique = false;
|
||||
boolean comment = false;
|
||||
boolean compress = false;
|
||||
Comment fieldComment = null;
|
||||
|
||||
identity |= type.identity();
|
||||
@ -4725,6 +4726,30 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!compress) {
|
||||
if (parseKeywordIf("NO COMPRESS") && requireProEdition()) {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
else if (parseKeywordIf("COMPRESS") && requireProEdition()) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user