Add things to shut tests up
This commit is contained in:
parent
419f2760c7
commit
f14301de7b
2 changed files with 17 additions and 2 deletions
|
@ -96,6 +96,21 @@ func (m testMockDriver) PrimaryKeyInfo(schema, tableName string) (*PrimaryKey, e
|
|||
}[tableName], nil
|
||||
}
|
||||
|
||||
// RightQuote is the quoting character for the right side of the identifier
|
||||
func (m *testMockDriver) RightQuote() byte {
|
||||
return '"'
|
||||
}
|
||||
|
||||
// LeftQuote is the quoting character for the left side of the identifier
|
||||
func (m *testMockDriver) LeftQuote() byte {
|
||||
return '"'
|
||||
}
|
||||
|
||||
// IndexPlaceholders returns true to indicate fake support of indexed placeholders
|
||||
func (m *testMockDriver) IndexPlaceholders() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func TestTables(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue