mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Fix positional parameter warnings (#173)
This commit is contained in:
parent
3e9ed7a304
commit
07c68d38e4
1 changed files with 3 additions and 3 deletions
|
@ -52,11 +52,11 @@ class FooDriver < DB::Driver
|
|||
end
|
||||
|
||||
class FooConnection < DB::Connection
|
||||
def build_prepared_statement(command) : DB::Statement
|
||||
FooStatement.new(self, command)
|
||||
def build_prepared_statement(query) : DB::Statement
|
||||
FooStatement.new(self, query)
|
||||
end
|
||||
|
||||
def build_unprepared_statement(command) : DB::Statement
|
||||
def build_unprepared_statement(query) : DB::Statement
|
||||
raise "not implemented"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue