-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dataset_run extension, for building SQL using datasets, and runni…
…ng with Database#run This is mostly useful for easily using placeholders with raw SQL, which the Dataset#run API does not support.
- Loading branch information
1 parent
8268b44
commit 26a2243
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# frozen-string-literal: true | ||
# | ||
# The dataset_run extension is designed for cases where you want | ||
# to use dataset methods to build a query, but want to run that | ||
# query without returning a result. The most common need would | ||
# be to easily use placeholders in an SQL string, which Database#run | ||
# does not support directly. | ||
# | ||
# You can load this extension into specific datasets: | ||
# | ||
# ds = DB["GRANT SELECT ON ? TO ?", :table, :user] | ||
# ds = ds.extension(:dataset_run) | ||
# ds.run | ||
# | ||
# Or you can load it into all of a database's datasets, which | ||
# is probably the desired behavior if you are using this extension: | ||
# | ||
# DB.extension(:dataset_run) | ||
# DB["GRANT SELECT ON ? TO ?", :table, :user].run | ||
# | ||
# Related module: Sequel::DatasetRun | ||
|
||
# | ||
module Sequel | ||
module DatasetRun | ||
# Run the dataset's SQL on the database. Returns NULL. This is | ||
# useful when you want to run SQL without returning a result. | ||
# | ||
# DB["GRANT SELECT ON ? TO ?", :table, :user].run | ||
# # GRANT SELECT ON "table" TO "user" | ||
def run | ||
if server = @opts[:server] | ||
db.run(sql, :server=>server) | ||
else | ||
db.run(sql) | ||
end | ||
end | ||
end | ||
|
||
Dataset.register_extension(:dataset_run, DatasetRun) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require_relative "spec_helper" | ||
|
||
describe "dataset_run extension" do | ||
it "#run should run the SQL on the database" do | ||
db = Sequel.mock | ||
db["SQL with ?", "placeholder"].extension(:dataset_run).run.must_be_nil | ||
db.sqls.must_equal ["SQL with 'placeholder'"] | ||
end | ||
|
||
it "#run should respect current server" do | ||
db = Sequel.mock(:servers=>{:a=>{}}) | ||
db["SQL with ?", "placeholder"].extension(:dataset_run).server(:a).run.must_be_nil | ||
db.sqls.must_equal ["SQL with 'placeholder' -- a"] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters