forked from haskellari/postgresql-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
180 additions
and
6 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,32 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
module Main where | ||
|
||
import Database.PostgreSQL.Simple | ||
import qualified Database.PostgreSQL.Simple.Vector as V | ||
import qualified Database.PostgreSQL.Simple.Vector.Unboxed as VU | ||
|
||
import System.Environment (getArgs) | ||
import Data.Foldable (Foldable, foldl') | ||
import qualified Data.Vector.Unboxed as VU | ||
|
||
main :: IO () | ||
main = do | ||
args <- getArgs | ||
conn <- connectPostgreSQL "" | ||
case args of | ||
("vector":_) -> do | ||
result <- V.query_ conn "SELECT * FROM generate_series(1, 10000000);" | ||
print (process result) | ||
("unboxed":_) -> do | ||
-- dummy column | ||
result <- VU.query_ conn "SELECT (NULL :: VOID), * FROM generate_series(1, 10000000);" | ||
print (process' result) | ||
_ -> do | ||
result <- query_ conn "SELECT * FROM generate_series(1, 10000000);" | ||
print (process result) | ||
|
||
process :: Foldable f => f (Only Int) -> Int | ||
process = foldl' (\x (Only y) -> max x y) 0 | ||
|
||
process' :: VU.Vector ((), Int) -> Int | ||
process' = VU.foldl' (\x (_, y) -> max x y) 0 |
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
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,45 @@ | ||
-- | 'query' variants returning 'V.Vector'. | ||
module Database.PostgreSQL.Simple.Vector where | ||
|
||
import Database.PostgreSQL.Simple (Connection, formatQuery, formatMany) | ||
import Database.PostgreSQL.Simple.FromRow (FromRow(..)) | ||
import Database.PostgreSQL.Simple.ToRow (ToRow(..)) | ||
import Database.PostgreSQL.Simple.Internal (RowParser, exec) | ||
import Database.PostgreSQL.Simple.Internal.PQResultUtils | ||
import Database.PostgreSQL.Simple.Types ( Query (..) ) | ||
|
||
import qualified Data.Vector as V | ||
|
||
-- | Perform a @SELECT@ or other SQL query that is expected to return | ||
-- results. All results are retrieved and converted before this | ||
-- function returns. | ||
query :: (ToRow q, FromRow r) => Connection -> Query -> q -> IO (V.Vector r) | ||
query = queryWith fromRow | ||
|
||
-- | A version of 'query' that does not perform query substitution. | ||
query_ :: (FromRow r) => Connection -> Query -> IO (V.Vector r) | ||
query_ = queryWith_ fromRow | ||
|
||
-- | A version of 'query' taking parser as argument | ||
queryWith :: ToRow q => RowParser r -> Connection -> Query -> q -> IO (V.Vector r) | ||
queryWith parser conn template qs = do | ||
result <- exec conn =<< formatQuery conn template qs | ||
finishQueryWithV parser conn template result | ||
|
||
-- | A version of 'query_' taking parser as argument | ||
queryWith_ :: RowParser r -> Connection -> Query -> IO (V.Vector r) | ||
queryWith_ parser conn q@(Query que) = do | ||
result <- exec conn que | ||
finishQueryWithV parser conn q result | ||
|
||
-- | Execute @INSERT ... RETURNING@, @UPDATE ... RETURNING@, or other SQL | ||
-- query that accepts multi-row input and is expected to return results. | ||
returning :: (ToRow q, FromRow r) => Connection -> Query -> [q] -> IO (V.Vector r) | ||
returning = returningWith fromRow | ||
|
||
-- | A version of 'returning' taking parser as argument | ||
returningWith :: (ToRow q) => RowParser r -> Connection -> Query -> [q] -> IO (V.Vector r) | ||
returningWith _ _ _ [] = return V.empty | ||
returningWith parser conn q qs = do | ||
result <- exec conn =<< formatMany conn q qs | ||
finishQueryWithV parser conn q result |
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,44 @@ | ||
module Database.PostgreSQL.Simple.Vector.Unboxed where | ||
|
||
import Database.PostgreSQL.Simple (Connection, formatQuery, formatMany) | ||
import Database.PostgreSQL.Simple.FromRow (FromRow(..)) | ||
import Database.PostgreSQL.Simple.ToRow (ToRow(..)) | ||
import Database.PostgreSQL.Simple.Internal (RowParser, exec) | ||
import Database.PostgreSQL.Simple.Internal.PQResultUtils | ||
import Database.PostgreSQL.Simple.Types ( Query (..) ) | ||
|
||
import qualified Data.Vector.Unboxed as VU | ||
|
||
-- | Perform a @SELECT@ or other SQL query that is expected to return | ||
-- results. All results are retrieved and converted before this | ||
-- function returns. | ||
query :: (ToRow q, FromRow r, VU.Unbox r) => Connection -> Query -> q -> IO (VU.Vector r) | ||
query = queryWith fromRow | ||
|
||
-- | A version of 'query' that does not perform query substitution. | ||
query_ :: (FromRow r, VU.Unbox r) => Connection -> Query -> IO (VU.Vector r) | ||
query_ = queryWith_ fromRow | ||
|
||
-- | A version of 'query' taking parser as argument | ||
queryWith :: (ToRow q, VU.Unbox r) => RowParser r -> Connection -> Query -> q -> IO (VU.Vector r) | ||
queryWith parser conn template qs = do | ||
result <- exec conn =<< formatQuery conn template qs | ||
finishQueryWithVU parser conn template result | ||
|
||
-- | A version of 'query_' taking parser as argument | ||
queryWith_ :: VU.Unbox r => RowParser r -> Connection -> Query -> IO (VU.Vector r) | ||
queryWith_ parser conn q@(Query que) = do | ||
result <- exec conn que | ||
finishQueryWithVU parser conn q result | ||
|
||
-- | Execute @INSERT ... RETURNING@, @UPDATE ... RETURNING@, or other SQL | ||
-- query that accepts multi-row input and is expected to return results. | ||
returning :: (ToRow q, FromRow r, VU.Unbox r) => Connection -> Query -> [q] -> IO (VU.Vector r) | ||
returning = returningWith fromRow | ||
|
||
-- | A version of 'returning' taking parser as argument | ||
returningWith :: (ToRow q, VU.Unbox r) => RowParser r -> Connection -> Query -> [q] -> IO (VU.Vector r) | ||
returningWith _ _ _ [] = return VU.empty | ||
returningWith parser conn q qs = do | ||
result <- exec conn =<< formatMany conn q qs | ||
finishQueryWithVU parser conn q result |