Extending HBase support

2018-05-22 Thread Arjan Seijkens
Hi, In the context of an internship we have been working on extending HBase support for MetaModel, mainly focusing on adding write support. Right now there is a pull request for this on a MetaModel fork, which can be found here: https://github.com/GerardDellemann/metamodel/pull/2. Note that we

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189916493 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/utils/ArrayColumnTypeHandler.java --- @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189893280 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/Neo4jDataContext.java --- @@ -236,8 +256,8 @@ protected String getMainSchemaName() throws

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189885903 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/Neo4jDataContext.java --- @@ -158,60 +159,79 @@ protected String getMainSchemaName() throws

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189903958 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/utils/ColumnTypeHandler.java --- @@ -0,0 +1,38 @@ +/** + * Licensed to the Apache

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189915253 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/utils/AbstractColumnTypeHandler.java --- @@ -0,0 +1,33 @@ +/** + * Licensed to the

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189905854 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/utils/ColumnTypeResolver.java --- @@ -0,0 +1,117 @@ +/** + * Licensed to the Apache

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189906596 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/utils/ColumnTypeResolver.java --- @@ -0,0 +1,117 @@ +/** + * Licensed to the Apache

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread arjansh
Github user arjansh commented on a diff in the pull request: https://github.com/apache/metamodel/pull/179#discussion_r189892629 --- Diff: neo4j/src/main/java/org/apache/metamodel/neo4j/Neo4jDataContext.java --- @@ -158,60 +159,79 @@ protected String getMainSchemaName() throws

[GitHub] metamodel pull request #179: Feature/neo4j column types

2018-05-22 Thread jhorcicka
GitHub user jhorcicka opened a pull request: https://github.com/apache/metamodel/pull/179 Feature/neo4j column types This PR adds column types to the neo4j table definitions. In the previous version all column types were treated as Strings.