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
|
end
|
||||||
|
|
||||||
class FooConnection < DB::Connection
|
class FooConnection < DB::Connection
|
||||||
def build_prepared_statement(command) : DB::Statement
|
def build_prepared_statement(query) : DB::Statement
|
||||||
FooStatement.new(self, command)
|
FooStatement.new(self, query)
|
||||||
end
|
end
|
||||||
|
|
||||||
def build_unprepared_statement(command) : DB::Statement
|
def build_unprepared_statement(query) : DB::Statement
|
||||||
raise "not implemented"
|
raise "not implemented"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue