mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-07-06 08:06:31 +00:00
873705baf9
* postgres2: default the filemeta CREATE TABLE when createTable is unset An empty createTable rendered through fmt.Sprintf produced %!(EXTRA string=filemeta), which Postgres rejected with a syntax error at init. Fall back to a working template so a minimal config bootstraps. * mysql2: default the filemeta CREATE TABLE when createTable is unset Same empty-template failure the postgres2 path had: an unset createTable rendered to %!(EXTRA string=filemeta) and MySQL rejected it at init. Fall back to a working template.
79 lines
2.5 KiB
Go
79 lines
2.5 KiB
Go
package postgres
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestDefaultUpsertQueryIsConflictSafe(t *testing.T) {
|
|
gen := &SqlGenPostgres{UpsertQueryTemplate: DefaultUpsertQuery}
|
|
got := gen.GetSqlInsert("filemeta")
|
|
if !strings.Contains(got, "ON CONFLICT") {
|
|
t.Fatalf("expected ON CONFLICT in default upsert, got: %s", got)
|
|
}
|
|
if !strings.Contains(got, `"filemeta"`) {
|
|
t.Fatalf("expected quoted table name, got: %s", got)
|
|
}
|
|
}
|
|
|
|
func TestDefaultCreateTableQueryRendersValidSql(t *testing.T) {
|
|
gen := &SqlGenPostgres{CreateTableSqlTemplate: DefaultCreateTableQuery}
|
|
got := gen.GetSqlCreateTable("filemeta")
|
|
if strings.Contains(got, "%!") {
|
|
t.Fatalf("template rendered to malformed SQL, got: %s", got)
|
|
}
|
|
if !strings.Contains(got, `"filemeta"`) {
|
|
t.Fatalf("expected quoted table name, got: %s", got)
|
|
}
|
|
}
|
|
|
|
func TestEmptyUpsertTemplateFallsBackToPlainInsert(t *testing.T) {
|
|
gen := &SqlGenPostgres{}
|
|
got := gen.GetSqlInsert("filemeta")
|
|
if strings.Contains(got, "ON CONFLICT") {
|
|
t.Fatalf("plain INSERT path should not contain ON CONFLICT, got: %s", got)
|
|
}
|
|
}
|
|
|
|
func TestListSqlDefaultOrderingFollowsColumn(t *testing.T) {
|
|
gen := &SqlGenPostgres{}
|
|
for _, got := range []string{gen.GetSqlListExclusive("filemeta"), gen.GetSqlListInclusive("filemeta")} {
|
|
if strings.Contains(got, "COLLATE") {
|
|
t.Fatalf("default list query should not force a collation, got: %s", got)
|
|
}
|
|
if !strings.Contains(got, "ORDER BY name ASC") {
|
|
t.Fatalf("expected plain name ordering, got: %s", got)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestListSqlBinaryOrderingOnNonBinaryColumn(t *testing.T) {
|
|
gen := &SqlGenPostgres{ForceBinaryCollation: true}
|
|
for _, got := range []string{gen.GetSqlListExclusive("filemeta"), gen.GetSqlListInclusive("filemeta")} {
|
|
if !strings.Contains(got, `ORDER BY name COLLATE "C" ASC`) {
|
|
t.Fatalf(`expected COLLATE "C" ordering, got: %s`, got)
|
|
}
|
|
if !strings.Contains(got, `name COLLATE "C" like $4`) {
|
|
t.Fatalf(`expected COLLATE "C" prefix filter, got: %s`, got)
|
|
}
|
|
if strings.Contains(got, "AND name>$2") || strings.Contains(got, "AND name>=$2") {
|
|
t.Fatalf("pagination comparison must also be byte-ordered, got: %s", got)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestIsByteOrderedCollation(t *testing.T) {
|
|
byteOrdered := []string{"C", "POSIX", "c", "C.UTF-8", "C.utf8"}
|
|
for _, c := range byteOrdered {
|
|
if !isByteOrderedCollation(c) {
|
|
t.Fatalf("expected %q to be treated as byte-ordered", c)
|
|
}
|
|
}
|
|
locale := []string{"en_US.UTF-8", "en_US.utf8", "en-US-x-icu", "und-x-icu", ""}
|
|
for _, c := range locale {
|
|
if isByteOrderedCollation(c) {
|
|
t.Fatalf("expected %q to be treated as locale-aware", c)
|
|
}
|
|
}
|
|
}
|