Skip to content

Commit 6ca9196

Browse files
committed
fix(yaml): correct merge_update_insert placeholder and update concat function parameter
1 parent 35ec9bb commit 6ca9196

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/dbio/templates/base.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ core:
4646
incremental_select_limit_offset: select {fields} from {table} where ({incremental_where_cond}){where_and} order by {update_key} asc limit {limit} offset {offset}
4747
incremental_where: '{update_key} {gt} {value}'
4848
backfill_where: '{update_key} >= {start_value} and {update_key} <= {end_value}'
49-
merge_update_insert: 'select error /* merge_update_insert not implemented */'
5049

5150
analysis:
5251
# table level

core/dbio/templates/exasol.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ bulk:
191191
function:
192192
add_months: add_months({field}, {num})
193193
cast: cast({field} as {type})
194-
concat: concat({strings})
194+
concat: concat({fields})
195195
date_diff_days: days_between({date1}, {date2})
196196
date_diff_seconds: seconds_between({date1}, {date2})
197197
date_parse_format: to_timestamp({string}, {format})
@@ -208,6 +208,7 @@ function:
208208
uuid: sys_guid()
209209

210210
variable:
211+
column_upper: true
211212
bool_as: string
212213
duplicates_group_by: false
213214
handle_null_compare: true

0 commit comments

Comments
 (0)