===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
cl-postmodern-20180430/README.md-162-    (defprepared sovereign-of
cl-postmodern-20180430/README.md:163:      (:select 'sovereign :from 'country :where (:= 'name '$1))
cl-postmodern-20180430/README.md-164-      :single!)
##############################################
cl-postmodern-20180430/doc/index.html-387-(defprepared sovereign-of
cl-postmodern-20180430/doc/index.html:388:  (:select 'sovereign :from 'country :where (:= 'name '$1))
cl-postmodern-20180430/doc/index.html-389-  :single!)
##############################################
cl-postmodern-20180430/doc/postmodern.html-332-  ("select * from messages
cl-postmodern-20180430/doc/postmodern.html:333:    where user_id = $1
cl-postmodern-20180430/doc/postmodern.html-334-    order by date desc
##############################################
cl-postmodern-20180430/doc/s-sql.html-632-    <pre class="desc code">
cl-postmodern-20180430/doc/s-sql.html:633:(:function 'get-foobar (integer) foobar :stable (:select '* :from 'foobar :where (:= 'id '$1)))</pre>
cl-postmodern-20180430/doc/s-sql.html-634-
##############################################
cl-postmodern-20180430/doc/s-sql.html-663-                     :update-set 'column-B '$2
cl-postmodern-20180430/doc/s-sql.html:664:                     :where (:= 'test-table.column-A '$1)) "c" 37)</pre>
cl-postmodern-20180430/doc/s-sql.html-665-
##############################################
cl-postmodern-20180430/postmodern/namespace.lisp-63-                            :from 'information_schema.schemata
cl-postmodern-20180430/postmodern/namespace.lisp:64:                            :where (:= 'schema_name '$1))))
cl-postmodern-20180430/postmodern/namespace.lisp-65-         (to-sql-name name)
##############################################
cl-postmodern-20180430/postmodern/util.lisp-117-                   :from 'pg-database
cl-postmodern-20180430/postmodern/util.lisp:118:                   :where (:= 'datname '$1))
cl-postmodern-20180430/postmodern/util.lisp-119-          (to-sql-name name))))
##############################################
cl-postmodern-20180430/postmodern/util.lisp-190-                                                               :from 'information-schema.tables
cl-postmodern-20180430/postmodern/util.lisp:191:                                                               :where (:= 'table-schema '$1)))))
cl-postmodern-20180430/postmodern/util.lisp-192-                           (:raw order-by-size))
##############################################
cl-postmodern-20180430/postmodern/util.lisp-201-                                                               :from 'information-schema.tables
cl-postmodern-20180430/postmodern/util.lisp:202:                                                               :where (:= 'table-schema '$1)))))
cl-postmodern-20180430/postmodern/util.lisp-203-                                   'relname)
##############################################
cl-postmodern-20180430/postmodern/util.lisp-273-			     (:select 'oid :from 'pg-class
cl-postmodern-20180430/postmodern/util.lisp:274:				      :where (:and (:= 'relname '$1)
cl-postmodern-20180430/postmodern/util.lisp-275-						   (:= 'attname '$2)))))
##############################################
cl-postmodern-20180430/postmodern/util.lisp-353-             :from 'pg_index 'pg_class 'pg_attribute
cl-postmodern-20180430/postmodern/util.lisp:354:             :where (:and (:= 'pg_class.oid (:type '$1 :regclass))
cl-postmodern-20180430/postmodern/util.lisp-355-                          (:= 'indrelid 'pg_class.oid)
##############################################
cl-postmodern-20180430/postmodern/util.lisp-366-                    :from 'pg_index
cl-postmodern-20180430/postmodern/util.lisp:367:                    :where (:= 'indrelid (:type '$1 :regclass)))
cl-postmodern-20180430/postmodern/util.lisp-368-	   table-name)))
##############################################
cl-postmodern-20180430/postmodern/util.lisp-414-		    :from 'information-schema.table-constraints
cl-postmodern-20180430/postmodern/util.lisp:415:		    :where (:= 'table-name '$1))
cl-postmodern-20180430/postmodern/util.lisp-416-	   table-name)))
##############################################
cl-postmodern-20180430/postmodern/util.lisp-453-                         (:= 'rc.unique-constraint-name 'ccu.constraint-name))
cl-postmodern-20180430/postmodern/util.lisp:454:               :where (:and (:= 'tc.table-name '$1)
cl-postmodern-20180430/postmodern/util.lisp-455-                            (:= 'tc.constraint-name
##############################################
cl-postmodern-20180430/s-sql/tests.lisp-865-                           (:union
cl-postmodern-20180430/s-sql/tests.lisp:866:                            (:select 'depended-on :from 'dependencies :where (:= 'depends-on '$1))
cl-postmodern-20180430/s-sql/tests.lisp-867-                            (:select 'a.depended-on :from (:as 'dependencies 'a)
##############################################
cl-postmodern-20180430/s-sql/tests.lisp-870-                    (:select '* :from 'children)))
cl-postmodern-20180430/s-sql/tests.lisp:871:                 "WITH RECURSIVE children AS ((SELECT depended_on FROM dependencies WHERE (depends_on = $1)) union (SELECT a.depended_on FROM dependencies AS a INNER JOIN children AS b ON (a.depends_on = b.depended_on)))(SELECT * FROM children)"))
cl-postmodern-20180430/s-sql/tests.lisp-872-
##############################################
cl-postmodern-20180430/s-sql/tests.lisp-1002-CREATE FUNCTION distributors(int) RETURNS SETOF distributors AS $$
cl-postmodern-20180430/s-sql/tests.lisp:1003:    SELECT * FROM distributors WHERE did = $1;
cl-postmodern-20180430/s-sql/tests.lisp-1004-$$ LANGUAGE SQL;
##############################################
cl-postmodern-20180430/s-sql/tests.lisp-1008-CREATE FUNCTION distributors_2(int) RETURNS SETOF record AS $$
cl-postmodern-20180430/s-sql/tests.lisp:1009:    SELECT * FROM distributors WHERE did = $1;
cl-postmodern-20180430/s-sql/tests.lisp-1010-$$ LANGUAGE SQL;