1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00

Removed redundant code

This commit is contained in:
Harvey Kandola 2018-11-12 15:02:25 +00:00
parent cb9fd0940d
commit 5e58b56182
2 changed files with 2 additions and 46 deletions

View file

@ -206,28 +206,6 @@ func (p PostgreSQLProvider) QueryMeta() string {
FROM pg_database WHERE datname = '%s'`, p.DatabaseName())
}
// // QueryStartLock locks database tables.
// func (p PostgreSQLProvider) QueryStartLock() string {
// return ""
// }
// // QueryFinishLock unlocks database tables.
// func (p PostgreSQLProvider) QueryFinishLock() string {
// return ""
// }
// // QueryInsertProcessID returns database specific query that will
// // insert ID of this running process.
// func (p PostgreSQLProvider) QueryInsertProcessID() string {
// return ""
// }
// // QueryDeleteProcessID returns database specific query that will
// // delete ID of this running process.
// func (p PostgreSQLProvider) QueryDeleteProcessID() string {
// return ""
// }
// QueryRecordVersionUpgrade returns database specific insert statement
// that records the database version number.
func (p PostgreSQLProvider) QueryRecordVersionUpgrade(version int) string {