mirror of https://github.com/alibaba/druid.git
Add default increase by value.
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (11, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (17, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (21, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (8, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (11, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (17, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (21, ubuntu-latest) (push) Has been cancelled
Details
Java CI / Test JDK ${{ matrix.java }}, ${{ matrix.os }} (8, ubuntu-latest) (push) Has been cancelled
Details
This commit is contained in:
parent
8b76e1d2b2
commit
9a9f508ccb
|
|
@ -2951,7 +2951,11 @@ public class PGOutputVisitor extends SQLASTOutputVisitor implements PGASTVisitor
|
||||||
Integer seed = x.getSeed();
|
Integer seed = x.getSeed();
|
||||||
if (seed != null) {
|
if (seed != null) {
|
||||||
print0(ucase ? " (INCREMENT BY " : " (increment by ");
|
print0(ucase ? " (INCREMENT BY " : " (increment by ");
|
||||||
print(x.getIncrement());
|
if (x.getIncrement() != null) {
|
||||||
|
print(x.getIncrement());
|
||||||
|
} else {
|
||||||
|
print('1');
|
||||||
|
}
|
||||||
print0(ucase ? " START WITH " : " start with ");
|
print0(ucase ? " START WITH " : " start with ");
|
||||||
print(seed);
|
print(seed);
|
||||||
print(')');
|
print(')');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue