The goal is refresh one named partition and other objects with default "partition" schema(other tables don't have partitions) without definition tables.
etc:
{
"refresh": {
"type": "full",
"objects": [
{
"database": "Database",
"table": "Table1",
"partition": "P1"
},
{
"database": "Database",
"partition": "partition"
}
]
}
}
This is our actual code:
{
"refresh": {
"type": "full",
"objects": [
{
"database": "Database",
"table": "Table1",
"partition": "P1"
},
//This code is confusing
{
"database": "Database",
"table": "Table2"
},
{
"database": "Database",
"table": "Table3"
}
....
//
]
}
}