mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 19:43:58 +00:00
This commit is contained in:
@@ -61,6 +61,13 @@ class Dumper extends SqlDumper {
|
|||||||
}
|
}
|
||||||
super.columnDefinition(col, options);
|
super.columnDefinition(col, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
putValue(value) {
|
||||||
|
if (value === true) this.putRaw('true');
|
||||||
|
else if (value === false) this.putRaw('false');
|
||||||
|
else super.putValue(value);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Dumper;
|
module.exports = Dumper;
|
||||||
|
|||||||
Reference in New Issue
Block a user