Repository: incubator-ignite Updated Branches: refs/heads/ignite-45 45329857e -> 30a78d6eb
# ignite-45 - fixing DB script. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/30a78d6e Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/30a78d6e Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/30a78d6e Branch: refs/heads/ignite-45 Commit: 30a78d6ebc470db8ebe653b09f3801262790af58 Parents: 4532985 Author: Dmitiry Setrakyan <dsetrak...@gridgain.com> Authored: Sun Mar 22 02:02:54 2015 -0700 Committer: Dmitiry Setrakyan <dsetrak...@gridgain.com> Committed: Sun Mar 22 02:02:54 2015 -0700 ---------------------------------------------------------------------- examples/schema-import/bin/example-database.script | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/30a78d6e/examples/schema-import/bin/example-database.script ---------------------------------------------------------------------- diff --git a/examples/schema-import/bin/example-database.script b/examples/schema-import/bin/example-database.script index 3a2a9fb..7222856 100644 --- a/examples/schema-import/bin/example-database.script +++ b/examples/schema-import/bin/example-database.script @@ -20,6 +20,8 @@ -- You can start H2 database server with "h2-server.sh" or "h2-server.bat" scripts. -- +drop table PERSON; + create table PERSON(id bigint not null, first_name varchar(50), last_name varchar(50), PRIMARY KEY(id)); insert into PERSON(id, first_name, last_name) values(1, 'first-name-1', 'last-name-1');