Metadata-Version: 1.0
Name: pgsanity
Version: 0.2.2
Summary: Check syntax of sql for PostgreSQL
Home-page: http://github.com/markdrago/pgsanity
Author: Mark Drago
Author-email: markdrago@gmail.com
License: UNKNOWN
Description: 
        **PgSanity checks the syntax of Postgresql SQL files.**
        
        It does this by leveraging the ecpg command which is traditionally
        used for preparing C files with embedded sql for compilation.
        However, as part of that preparation, ecpg checks the embedded SQL
        statements for syntax errors using the exact same parser that is
        in PostgreSQL.
        
        So the approach that PgSanity takes is to take a file that has a
        list of bare SQL in it, make that file look like a C file with
        embedded SQL, run it through ecpg and let ecpg report on the syntax
        errors of the SQL.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Database
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
