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
# If you are joining more than one tables in the where clause then use a columnPrefix label
76
76
migration.data.view.t.medias.columnPrefix=item_t1
77
-
# name `v_medias` is generated due to default name pattern value v_%s. No need to configure
78
-
migration.data.view.t.medias.joinWhereClause=FROM medias item_t1 JOIN mediafolders item_t2 ON item_t1.p_folder = item_t2.PK WHERE (item_t2.p_qualifier like 'images')
77
+
# The joinWhereClause is used within view definition. i.e. CREATE VIEW v_media AS SELECT * FROM {joinWhereClause}
78
+
# name `v_medias` is generated due to default name pattern value v_%s as the view name so no need to configure it for joinWhereClause
79
+
migration.data.view.t.medias.joinWhereClause=medias item_t1 JOIN mediafolders item_t2 ON item_t1.p_folder = item_t2.PK WHERE (item_t2.p_qualifier like 'images')
0 commit comments