mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-20 06:00:44 +00:00
Re-enabling sample project, now that it can use h2 database (so it can run & pass in CI); cleanup some warnings, and some initial IJ configs
This commit is contained in:
@ -225,7 +225,7 @@ public class DeserializerUtils
|
||||
// otherwise, either find some jackson annotation that makes sense, and apply it to the setter method, //
|
||||
// or if no jackson annotation is right, then come up with annotation of our own. //
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
method.invoke(output, reflectivelyDeserialize((Class) parameterType, (TreeNode) value));
|
||||
method.invoke(output, reflectivelyDeserialize((Class<?>) parameterType, (TreeNode) value));
|
||||
}
|
||||
}
|
||||
catch(IllegalAccessException | InvocationTargetException | NoSuchMethodException | IOException e)
|
||||
|
@ -62,7 +62,7 @@ public class BasicETLProcess
|
||||
.withCodeType(QCodeType.JAVA)
|
||||
.withCodeUsage(QCodeUsage.BACKEND_STEP))
|
||||
.withInputData(new QFunctionInputMetaData()
|
||||
.addField(new QFieldMetaData(FIELD_SOURCE_TABLE, QFieldType.STRING)));
|
||||
.withField(new QFieldMetaData(FIELD_SOURCE_TABLE, QFieldType.STRING)));
|
||||
|
||||
QStepMetaData transformFunction = new QBackendStepMetaData()
|
||||
.withName(FUNCTION_NAME_TRANSFORM)
|
||||
@ -71,8 +71,8 @@ public class BasicETLProcess
|
||||
.withCodeType(QCodeType.JAVA)
|
||||
.withCodeUsage(QCodeUsage.BACKEND_STEP))
|
||||
.withInputData(new QFunctionInputMetaData()
|
||||
.addField(new QFieldMetaData(FIELD_MAPPING_JSON, QFieldType.STRING))
|
||||
.addField(new QFieldMetaData(FIELD_DESTINATION_TABLE, QFieldType.STRING)));
|
||||
.withField(new QFieldMetaData(FIELD_MAPPING_JSON, QFieldType.STRING))
|
||||
.withField(new QFieldMetaData(FIELD_DESTINATION_TABLE, QFieldType.STRING)));
|
||||
|
||||
QStepMetaData loadFunction = new QBackendStepMetaData()
|
||||
.withName(FUNCTION_NAME_LOAD)
|
||||
@ -81,7 +81,7 @@ public class BasicETLProcess
|
||||
.withCodeType(QCodeType.JAVA)
|
||||
.withCodeUsage(QCodeUsage.BACKEND_STEP))
|
||||
.withInputData(new QFunctionInputMetaData()
|
||||
.addField(new QFieldMetaData(FIELD_DESTINATION_TABLE, QFieldType.STRING)))
|
||||
.withField(new QFieldMetaData(FIELD_DESTINATION_TABLE, QFieldType.STRING)))
|
||||
.withOutputMetaData(new QFunctionOutputMetaData()
|
||||
.addField(new QFieldMetaData(FIELD_RECORD_COUNT, QFieldType.INTEGER)));
|
||||
|
||||
|
Reference in New Issue
Block a user