WIP: Refactor - delete dml
Go Tests / test (pull_request) Failing after 9s

This commit is contained in:
2026-05-11 00:12:41 +02:00
parent f50004d9b4
commit 7bd3c333fe
4 changed files with 138 additions and 9 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ package schema
type SchemaDescriptor interface {
getDDL() (string, error)
GetSelectDML() (string, error)
GetInsertDML() (string, error)
GetInsertDML(count int) (string, error)
GetUpdateDML() (string, error)
GetDeleteDML() (string, error)
GetDeleteDML(count int) (string, error)
}