use of io.questdb.std.datetime.microtime.TimestampFormatFactory in project questdb by bluestreak01.
the class TypeManagerTest method createTypeManager.
private TypeManager createTypeManager(String fileResource) throws JsonException {
InputFormatConfiguration inputFormatConfiguration = new InputFormatConfiguration(new DateFormatFactory(), DateLocaleFactory.INSTANCE, new TimestampFormatFactory(), DateFormatUtils.enLocale);
inputFormatConfiguration.parseConfiguration(jsonLexer, fileResource);
return new TypeManager(new DefaultTextConfiguration(fileResource), utf8Sink);
}
Aggregations