提交 2358ead2 authored 作者: noelgrandin's avatar noelgrandin

Jacob Qvortrup <jfq@arosii.dk> added SCRIPT TABLE and SCRIPT SCHEMA extensions

上级 da9d7900
...@@ -147,6 +147,10 @@ SCRIPT [ SIMPLE ] [ NODATA ] [ NOPASSWORDS ] [ NOSETTINGS ] ...@@ -147,6 +147,10 @@ SCRIPT [ SIMPLE ] [ NODATA ] [ NOPASSWORDS ] [ NOSETTINGS ]
[ TO fileNameString [ scriptCompression ] [ TO fileNameString [ scriptCompression ]
[ CIPHER cipher PASSWORD string ] ] [ CIPHER cipher PASSWORD string ] ]
[ CHARSET charsetString ] [ CHARSET charsetString ]
[ TABLE tableName ]
[ TABLE ( tableName, ... ) ]
[ SCHEMA schemaName ]
[ SCHEMA ( schemaName, ... ) ]
"," ","
Creates a SQL script from the database. Creates a SQL script from the database.
...@@ -169,6 +173,10 @@ and LZF are supported (LZF is faster but uses more space). ...@@ -169,6 +173,10 @@ and LZF are supported (LZF is faster but uses more space).
The password must be in single quotes; it is case sensitive and can contain spaces. The password must be in single quotes; it is case sensitive and can contain spaces.
This command locks objects while it is running. This command locks objects while it is running.
TABLE will dump the DDL only for the selected table.
SCHEMA will dump the DDL only for objects in the selected schema.
"," ","
SCRIPT NODATA SCRIPT NODATA
" "
......
...@@ -42,6 +42,7 @@ Change Log ...@@ -42,6 +42,7 @@ Change Log
</li><li>TRUNC was added as an alias for TRUNCATE. </li><li>TRUNC was added as an alias for TRUNCATE.
</li><li>Small optimisation for accessing result values by column name. </li><li>Small optimisation for accessing result values by column name.
</li><li>Fix for bug in Statement#getMoreResults(int) </li><li>Fix for bug in Statement#getMoreResults(int)
</li><li>Jacob Qvortrup <jfq@arosii.dk> added SCRIPT TABLE and SCRIPT SCHEMA extensions(int)
</li></ul> </li></ul>
<h2>Version 1.3.166 (2012-04-08)</h2> <h2>Version 1.3.166 (2012-04-08)</h2>
......
...@@ -10,6 +10,7 @@ import java.math.BigDecimal; ...@@ -10,6 +10,7 @@ import java.math.BigDecimal;
import java.math.BigInteger; import java.math.BigInteger;
import java.text.Collator; import java.text.Collator;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet; import java.util.HashSet;
import org.h2.api.Trigger; import org.h2.api.Trigger;
import org.h2.command.ddl.AlterIndexRename; import org.h2.command.ddl.AlterIndexRename;
...@@ -4689,6 +4690,31 @@ public class Parser { ...@@ -4689,6 +4690,31 @@ public class Parser {
private ScriptCommand parseScript() { private ScriptCommand parseScript() {
ScriptCommand command = new ScriptCommand(session); ScriptCommand command = new ScriptCommand(session);
boolean data = true, passwords = true, settings = true, dropTables = false, simple = false; boolean data = true, passwords = true, settings = true, dropTables = false, simple = false;
if (readIf("SCHEMA")) {
java.util.Set<String> schemaNames = new HashSet<String>();
if (readIf("(")) {
do {
schemaNames.add(readUniqueIdentifier());
} while (readIf(","));
read(")");
} else {
schemaNames.add(readUniqueIdentifier());
}
command.setSchemaNames(schemaNames);
} else if (readIf("TABLE")) {
Collection<Table> tables = new ArrayList<Table>();
if (readIf("(")) {
do {
Table table = readTableOrView();
tables.add(table);
} while (readIf(","));
read(")");
} else {
Table table = readTableOrView();
tables.add(table);
}
command.setTables(tables);
}
if (readIf("SIMPLE")) { if (readIf("SIMPLE")) {
simple = true; simple = true;
} }
......
...@@ -16,10 +16,13 @@ import java.sql.PreparedStatement; ...@@ -16,10 +16,13 @@ import java.sql.PreparedStatement;
import java.sql.ResultSet; import java.sql.ResultSet;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.Comparator; import java.util.Comparator;
import java.util.Set;
import org.h2.command.CommandInterface; import org.h2.command.CommandInterface;
import org.h2.command.Parser; import org.h2.command.Parser;
import org.h2.constant.ErrorCode;
import org.h2.constant.SysProperties; import org.h2.constant.SysProperties;
import org.h2.constraint.Constraint; import org.h2.constraint.Constraint;
import org.h2.engine.Comment; import org.h2.engine.Comment;
...@@ -64,6 +67,8 @@ import org.h2.value.ValueString; ...@@ -64,6 +67,8 @@ import org.h2.value.ValueString;
public class ScriptCommand extends ScriptBase { public class ScriptCommand extends ScriptBase {
private String charset = Constants.VERSION_MINOR < 3 ? SysProperties.FILE_ENCODING : Constants.UTF8; private String charset = Constants.VERSION_MINOR < 3 ? SysProperties.FILE_ENCODING : Constants.UTF8;
private Set<String> schemaNames;
private Collection<Table> tables;
private boolean passwords; private boolean passwords;
private boolean data; private boolean data;
private boolean settings; private boolean settings;
...@@ -86,6 +91,14 @@ public class ScriptCommand extends ScriptBase { ...@@ -86,6 +91,14 @@ public class ScriptCommand extends ScriptBase {
// TODO lock all tables for 'script' command // TODO lock all tables for 'script' command
public void setSchemaNames(Set<String> schemaNames) {
this.schemaNames = schemaNames;
}
public void setTables(Collection<Table> tables) {
this.tables = tables;
}
public void setData(boolean data) { public void setData(boolean data) {
this.data = data; this.data = data;
} }
...@@ -121,6 +134,15 @@ public class ScriptCommand extends ScriptBase { ...@@ -121,6 +134,15 @@ public class ScriptCommand extends ScriptBase {
public ResultInterface query(int maxrows) { public ResultInterface query(int maxrows) {
session.getUser().checkAdmin(); session.getUser().checkAdmin();
reset(); reset();
Database db = session.getDatabase();
if (schemaNames != null) {
for (String schemaName : schemaNames) {
Schema schema = db.findSchema(schemaName);
if (schema == null) {
throw DbException.get(ErrorCode.SCHEMA_NOT_FOUND_1, schemaName);
}
}
}
try { try {
result = createResult(); result = createResult();
deleteStore(); deleteStore();
...@@ -128,7 +150,6 @@ public class ScriptCommand extends ScriptBase { ...@@ -128,7 +150,6 @@ public class ScriptCommand extends ScriptBase {
if (out != null) { if (out != null) {
buffer = new byte[Constants.IO_BUFFER_SIZE]; buffer = new byte[Constants.IO_BUFFER_SIZE];
} }
Database db = session.getDatabase();
if (settings) { if (settings) {
for (Setting setting : db.getAllSettings()) { for (Setting setting : db.getAllSettings()) {
if (setting.getName().equals(SetTypes.getTypeName(SetTypes.CREATE_BUILD))) { if (setting.getName().equals(SetTypes.getTypeName(SetTypes.CREATE_BUILD))) {
...@@ -149,6 +170,9 @@ public class ScriptCommand extends ScriptBase { ...@@ -149,6 +170,9 @@ public class ScriptCommand extends ScriptBase {
add(role.getCreateSQL(true), false); add(role.getCreateSQL(true), false);
} }
for (Schema schema : db.getAllSchemas()) { for (Schema schema : db.getAllSchemas()) {
if (excludeSchema(schema)) {
continue;
}
add(schema.getCreateSQL(), false); add(schema.getCreateSQL(), false);
} }
for (UserDataType datatype : db.getAllUserDataTypes()) { for (UserDataType datatype : db.getAllUserDataTypes()) {
...@@ -158,6 +182,9 @@ public class ScriptCommand extends ScriptBase { ...@@ -158,6 +182,9 @@ public class ScriptCommand extends ScriptBase {
add(datatype.getCreateSQL(), false); add(datatype.getCreateSQL(), false);
} }
for (SchemaObject obj : db.getAllSchemaObjects(DbObject.CONSTANT)) { for (SchemaObject obj : db.getAllSchemaObjects(DbObject.CONSTANT)) {
if (excludeSchema(obj.getSchema())) {
continue;
}
Constant constant = (Constant) obj; Constant constant = (Constant) obj;
add(constant.getCreateSQL(), false); add(constant.getCreateSQL(), false);
} }
...@@ -170,6 +197,12 @@ public class ScriptCommand extends ScriptBase { ...@@ -170,6 +197,12 @@ public class ScriptCommand extends ScriptBase {
} }
}); });
for (Table table : tables) { for (Table table : tables) {
if (excludeSchema(table.getSchema())) {
continue;
}
if (excludeTable(table)) {
continue;
}
if (table.isHidden()) { if (table.isHidden()) {
continue; continue;
} }
...@@ -184,6 +217,9 @@ public class ScriptCommand extends ScriptBase { ...@@ -184,6 +217,9 @@ public class ScriptCommand extends ScriptBase {
} }
} }
for (SchemaObject obj : db.getAllSchemaObjects(DbObject.FUNCTION_ALIAS)) { for (SchemaObject obj : db.getAllSchemaObjects(DbObject.FUNCTION_ALIAS)) {
if (excludeSchema(obj.getSchema())) {
continue;
}
if (drop) { if (drop) {
add(obj.getDropSQL(), false); add(obj.getDropSQL(), false);
} }
...@@ -196,6 +232,9 @@ public class ScriptCommand extends ScriptBase { ...@@ -196,6 +232,9 @@ public class ScriptCommand extends ScriptBase {
add(agg.getCreateSQL(), false); add(agg.getCreateSQL(), false);
} }
for (SchemaObject obj : db.getAllSchemaObjects(DbObject.SEQUENCE)) { for (SchemaObject obj : db.getAllSchemaObjects(DbObject.SEQUENCE)) {
if (excludeSchema(obj.getSchema())) {
continue;
}
Sequence sequence = (Sequence) obj; Sequence sequence = (Sequence) obj;
if (drop) { if (drop) {
add(sequence.getDropSQL(), false); add(sequence.getDropSQL(), false);
...@@ -204,6 +243,12 @@ public class ScriptCommand extends ScriptBase { ...@@ -204,6 +243,12 @@ public class ScriptCommand extends ScriptBase {
} }
int count = 0; int count = 0;
for (Table table : tables) { for (Table table : tables) {
if (excludeSchema(table.getSchema())) {
continue;
}
if (excludeTable(table)) {
continue;
}
if (table.isHidden()) { if (table.isHidden()) {
continue; continue;
} }
...@@ -311,7 +356,13 @@ public class ScriptCommand extends ScriptBase { ...@@ -311,7 +356,13 @@ public class ScriptCommand extends ScriptBase {
} }
}); });
for (SchemaObject obj : constraints) { for (SchemaObject obj : constraints) {
if (excludeSchema(obj.getSchema())) {
continue;
}
Constraint constraint = (Constraint) obj; Constraint constraint = (Constraint) obj;
if (excludeTable(constraint.getTable())) {
continue;
}
if (constraint.getTable().isHidden()) { if (constraint.getTable().isHidden()) {
continue; continue;
} }
...@@ -320,10 +371,25 @@ public class ScriptCommand extends ScriptBase { ...@@ -320,10 +371,25 @@ public class ScriptCommand extends ScriptBase {
} }
} }
for (SchemaObject obj : db.getAllSchemaObjects(DbObject.TRIGGER)) { for (SchemaObject obj : db.getAllSchemaObjects(DbObject.TRIGGER)) {
if (excludeSchema(obj.getSchema())) {
continue;
}
TriggerObject trigger = (TriggerObject) obj; TriggerObject trigger = (TriggerObject) obj;
if (excludeTable(trigger.getTable())) {
continue;
}
add(trigger.getCreateSQL(), false); add(trigger.getCreateSQL(), false);
} }
for (Right right : db.getAllRights()) { for (Right right : db.getAllRights()) {
Table table = right.getGrantedTable();
if (table != null) {
if (excludeSchema(table.getSchema())) {
continue;
}
if (excludeTable(table)) {
continue;
}
}
add(right.getCreateSQL(), false); add(right.getCreateSQL(), false);
} }
for (Comment comment : db.getAllComments()) { for (Comment comment : db.getAllComments()) {
...@@ -549,6 +615,28 @@ public class ScriptCommand extends ScriptBase { ...@@ -549,6 +615,28 @@ public class ScriptCommand extends ScriptBase {
} }
} }
private boolean excludeSchema(Schema schema) {
if (this.schemaNames != null && !this.schemaNames.contains(schema.getName())) {
return true;
}
if (this.tables != null) {
boolean containsTable = false;
for (Table table : schema.getAllTablesAndViews()) {
if (tables.contains(table)) {
table.checkSupportAlter(); // This may not be the correct way to ensure that only real tables can be used as arguments.
containsTable = true;
}
}
if (!containsTable)
return true;
}
return false;
}
private boolean excludeTable(Table table) {
return this.tables != null && !this.tables.contains(table);
}
private void add(String s, boolean insert) throws IOException { private void add(String s, boolean insert) throws IOException {
if (s == null) { if (s == null) {
return; return;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论