HybridRow/test-data/SchemaHashCoverageSchema.json
David Noble c36b0adfe8
Feature/java/port from dotnet (#1)
* Add pom.xml placeholder and Hybrid Row whitepaper

* Checkpoint for safe keeping

* Progressed on port from dotnet to java

* Progressed on port from C# to Java

* Brought in Utf8AnyString.java

* Progressed on port from C# to Java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Updated documents releated to release of Microsoft Code under MIT License

* Updated JRE copyright notices

* Progressed on port from dotnet to java

* Renamed jre as java because Java is used to can refer to two things: the platform and the language. In this case we are referring to the Java Platform, not the Java Runtime Environment.

* Progressed on port

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on dotnet port to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Progressed on port from dotnet to java

* Code cleanup, especially in Utf8String class which is much improved.

* Progressed on port from dotnet to java.

* Simplified Utf8String some more

* Code cleanup

* Excluding most tests with the expectation that we'll bring them in as we continue to expand our test matrix.

* Added and debugged some tests

* Added and debugged some tests

* Added and debugged some tests

* Added, revised, and debugged some tests and test issues

* Added, revised, and debugged some tests and test issues

* Added, revised, and debugged some tests and test issues

* Optimized imports

* Removed dead code

* Updated java docs

* Added, revised, and debugged some tests and test issues

* Added, revised, and debugged some tests and test issues

* Added, revised, and debugged some tests and test issues

* Added, revised, and debugged some tests and test issues. Updated javadocs and pom.xml. We now add SystemSchema.json to azure-cosmos-serialization.jar. Javadocs don't currently build.

* Javadoc update

* Test update

* Progressed on deserializing schemas.

* Progressed on deserializing schemas.

* Progressed on deserializing schemas.

* testLoadSchmea passes

* code cleanup in prep for next step: loading a namespace that includes a schema with a udt: the one that the Spark connector team needs.

* code cleanup in prep for next step: loading a namespace that includes a schema with a udt: the one that the Spark connector team needs.

* RootSegment.json now loads

* Progressed on RowReader

* Progressed on RowReader

* RowReaderTest against RootSegment.json/RootSegment.hybridrow succeeds

* RowReaderTest against RootSegment.json/RootSegment.hybridrow succeeds

* Move RowScanner and DataItem out of test into main

* Move RowScanner and DataItem out of test into main

* Move RowScanner and DataItem out of test into main

* RowIterable now works. RowIterable and RowScanner now include indexes of array elements.

* RowIterable and RowScanner now support additional data types

* RowScanner now implements Iterable<DataItem> and RowIterable has been removed.

* POM now packages SystemSchema.json and SystemSchema class now loads the packaged SystemSchema.json

* Updated pom.xml with required licensing info and attempted to produce javadocs.

* Progressed on adding support for unsupported Utf8String features

* Refinements to Utf8String and Utf8StringTest

* Utf8StringTest improvements

* Refinements to Utf8String and Utf8StringTest

* Added caching of UTF-16 string caching to Utf8String to reduce the time and space cost of Utf8String.toUtf16(). Also: addressed a number of javadoc issues.

* Addressed a number of javadoc issues and the javadocs now build.

* Utf8String refinements with inefficient support instead of no support for Utf8String.charAt(int)

* Bumped netty.version and updated javadocs for Utf8String

* Code cleanup (javadoc improvements + tidying)

* Utf8String optimizations

* Tweaks

* Tweaks
2019-10-09 14:07:57 -07:00

172 lines
3.6 KiB
JSON

{
"name": "Microsoft.Azure.Cosmos.Serialization.HybridRow.Tests.Unit.SchemaHashTest",
"schemas": [
{
"version": "v1",
"comment": "Some UDT definition",
"name": "UDT",
"id": 1,
"type": "schema",
"properties": [
{
"path": "item1",
"type": {
"length": 0,
"storage": "fixed",
"type": "int32",
"nullable": false
}
},
{
"path": "item2",
"type": {
"length": 10,
"storage": "variable",
"type": "utf8"
}
}
],
"partitionkeys": [],
"primarykeys": []
},
{
"version": "v1",
"comment": "Some table definition",
"name": "Table",
"id": 2,
"options": {
"disallowUnschematized": true,
"enablePropertyLevelTimestamp": true
},
"type": "schema",
"properties": [
{
"path": "fixed",
"type": {
"length": 0,
"storage": "fixed",
"apitype": "myfixed",
"type": "int32"
}
},
{
"path": "array",
"type": {
"items": {
"length": 0,
"storage": "sparse",
"type": "int8"
},
"immutable": true,
"type": "array"
}
},
{
"path": "obj",
"type": {
"properties": [
{
"path": "nested",
"type": {
"length": 0,
"storage": "sparse",
"type": "int32"
}
}
],
"immutable": false,
"type": "object"
}
},
{
"path": "map",
"type": {
"keys": {
"length": 0,
"storage": "sparse",
"type": "int8"
},
"values": {
"length": 0,
"storage": "sparse",
"type": "int8"
},
"immutable": false,
"type": "map"
}
},
{
"path": "set",
"type": {
"items": {
"length": 0,
"storage": "sparse",
"type": "int8"
},
"immutable": false,
"type": "set"
}
},
{
"path": "tagged",
"type": {
"items": [
{
"length": 0,
"storage": "sparse",
"type": "int32"
}
],
"immutable": false,
"type": "tagged"
}
},
{
"path": "tuple",
"type": {
"items": [
{
"length": 0,
"storage": "sparse",
"type": "int32"
},
{
"length": 0,
"storage": "sparse",
"type": "float32"
}
],
"immutable": false,
"type": "tuple"
}
},
{
"path": "udt",
"type": {
"name": "UDT",
"id": 1,
"immutable": false,
"type": "schema"
}
}
],
"partitionkeys": [
{
"path": "fixed"
}
],
"primarykeys": [
{
"path": "fixed",
"direction": "asc"
}
],
"statickeys": [
{
"path": "fixed"
}
]
}
]
}