mirror of
https://github.com/ManyakRus/starter.git
synced 2025-11-28 23:20:10 +02:00
сделал ReplaceSchemaName()
This commit is contained in:
@@ -562,6 +562,15 @@ func ReplaceSchema(TextSQL string) string {
|
||||
return Otvet
|
||||
}
|
||||
|
||||
// ReplaceSchemaName - заменяет имя схемы в тексте SQL
|
||||
func ReplaceSchemaName(TextSQL, SchemaNameFrom string) string {
|
||||
Otvet := TextSQL
|
||||
|
||||
Otvet = strings.ReplaceAll(Otvet, SchemaNameFrom+".", Settings.DB_SCHEMA+".")
|
||||
|
||||
return Otvet
|
||||
}
|
||||
|
||||
// ReplaceTemporaryTableNamesToUnique - заменяет "public.TableName" на "public.TableName_UUID"
|
||||
func ReplaceTemporaryTableNamesToUnique(TextSQL string) string {
|
||||
Otvet := TextSQL
|
||||
|
||||
Reference in New Issue
Block a user