Skip to content

Commit ae6f821

Browse files
committed
ff do not push
1 parent fdf4dc8 commit ae6f821

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

flow/internal/flow_configuration_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func FetchTableMappingsFromDB(ctx context.Context, flowJobName string, version u
6161
return nil, err
6262
}
6363
rows, err := pool.Query(ctx,
64-
"select table_mapping from table_mappings where flow_name = $1 AND version = $2",
64+
"select table_mappings from table_mappings where flow_name = $1 AND version = $2",
6565
flowJobName, version,
6666
)
6767
if err != nil {
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CREATE TABLE IF NOT EXISTS table_mappings (
2-
flow_name varchar(255) not null,Expand commentComment on line R2ResolvedCode has comments. Press enter to view.
3-
version int32 not null default 1,
4-
table_mappings []bytea not null,
2+
flow_name varchar(255) not null,
3+
version int not null default 1,
4+
table_mappings bytea[] not null,
55
primary key (flow_name, version)
66
);

0 commit comments

Comments
 (0)