You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added LICENSE.txt and THIRD_PARTY_LICENSES.txt to runtime jar file and LICENSE.txt to sources and javadoc jars.
Add NoSQL-SpringSDK/version as extension user agent.
Add new method on NosqlDbFactory getLibraryVersion() to return the version of the library.
* In the context of a CREATE TABLE statement, a precision must be
140
160
* explicitly specified. This restriction is to prevent users from
141
161
* inadvertently creating TIMESTAMP values with precision 9 (which takes
142
-
* more space) when in reality they don't need that high precision.
143
-
* <br>
144
-
* See <a href="https://docs.oracle.com/en/database/other-databases/nosql-database/20.2/sqlreferencefornosql/data-type-definitions.html">Timestamp documentation</a> for more details.
162
+
* more space) when in reality they don't need that high precision.<p>
163
+
*
164
+
* See <a href="https://docs.oracle.com/en/database/other-databases/nosql-database/20.2/sqlreferencefornosql/data-type-definitions.html">
165
+
* Timestamp documentation</a> for more details.
145
166
*/
146
167
publicintgetTimestampPrecision() {
147
168
returnconfig.getTimestampPrecision();
@@ -175,6 +196,28 @@ public int getDefaultWriteUnits() {
175
196
returnconfig.getDefaultWriteUnits();
176
197
}
177
198
199
+
/**
200
+
* Pulls the version string from the manifest. The version is added
0 commit comments