mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
29 lines
872 B
Go
29 lines
872 B
Go
|
package deltas
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"database/sql"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/lib/pq"
|
||
|
"github.com/matrix-org/gomatrixserverlib"
|
||
|
)
|
||
|
|
||
|
// I know what you're thinking: you're wondering "why doesn't this use $1
|
||
|
// and pass variadic parameters to ExecContext?" — the answer is because
|
||
|
// PostgreSQL doesn't expect the table name to be specified as a substituted
|
||
|
// argument in that way so it results in a syntax error in the query.
|
||
|
|
||
|
func UpServerNamesPopulate(ctx context.Context, tx *sql.Tx, serverName gomatrixserverlib.ServerName) error {
|
||
|
for _, table := range serverNamesTables {
|
||
|
q := fmt.Sprintf(
|
||
|
"UPDATE %s SET server_name = %s WHERE server_name = '';",
|
||
|
pq.QuoteIdentifier(table), pq.QuoteLiteral(string(serverName)),
|
||
|
)
|
||
|
if _, err := tx.ExecContext(ctx, q); err != nil {
|
||
|
return fmt.Errorf("write server names to %q error: %w", table, err)
|
||
|
}
|
||
|
}
|
||
|
return nil
|
||
|
}
|