From d0a8dde4222ea157dc77ba7a47d4a67c6dd25a8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=A4r?= Date: Fri, 10 Nov 2023 09:58:54 +0100 Subject: [PATCH] Fixed missing assignment in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 64a4ae4..1ffaed3 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The main design goals are to make the code of the integration test compact and r ```java // Precondition: Get a JDBC connection and store it in variable "connection" final DatabaseObjectFactory factory=new ExasolObjectFactory(connection); -final Schema schema factory.createSchema("ONLINESHOP"); +final Schema schema = factory.createSchema("ONLINESHOP"); final Table table=schema.createTable("ITEMS","PRODUCT_ID","DECIMAL(18,0)","NAME","VARCHAR(40)") .insert("1","Cat food") .insert("2","Toy mouse"); @@ -69,4 +69,4 @@ This is an open source project which is written by enthusiasts at Exasol and not * [User Guide](doc/user_guide/user_guide.md) * [Changelog](doc/changes/changelog.md) -* [Dependencies](dependencies.md) \ No newline at end of file +* [Dependencies](dependencies.md)