a2e20c93ae
Initially we duplicated the code to avoid large scale changes to the packages. Now we are past metainfo refactor we can remove the duplication. Change-Id: I9d0b2756cc6e2a2f4d576afa408a15273a7e1cef
17 lines
811 B
Bash
17 lines
811 B
Bash
#!/bin/sh
|
|
|
|
dbx schema -d pgx -d pgxcockroach satellitedb.dbx .
|
|
dbx golang -d pgx -d pgxcockroach -p dbx -t templates satellitedb.dbx .
|
|
( printf '%s\n' '//lint:file-ignore U1000,ST1012 generated file'; cat satellitedb.dbx.go ) > satellitedb.dbx.go.tmp && mv satellitedb.dbx.go.tmp satellitedb.dbx.go
|
|
gofmt -r "*sql.Tx -> tagsql.Tx" -w satellitedb.dbx.go
|
|
gofmt -r "*sql.Rows -> tagsql.Rows" -w satellitedb.dbx.go
|
|
perl -0777 -pi \
|
|
-e 's,\t_ "github.com/jackc/pgx/v4/stdlib"\n\),\t_ "github.com/jackc/pgx/v4/stdlib"\n\n\t"storj.io/private/tagsql"\n\),' \
|
|
satellitedb.dbx.go
|
|
perl -0777 -pi \
|
|
-e 's/type DB struct \{\n\t\*sql\.DB/type DB struct \{\n\ttagsql.DB/' \
|
|
satellitedb.dbx.go
|
|
perl -0777 -pi \
|
|
-e 's/\tdb = &DB\{\n\t\tDB: sql_db,/\tdb = &DB\{\n\t\tDB: tagsql.Wrap\(sql_db\),/' \
|
|
satellitedb.dbx.go
|