Giter Site home page Giter Site logo

Deparser options about pgsql-parser HOT 4 CLOSED

beeing avatar beeing commented on August 29, 2024
Deparser options

from pgsql-parser.

Comments (4)

pyramation avatar pyramation commented on August 29, 2024 1

@beeing I added options for newline and tab:

You can probably just use a space for each one like this:

  const sql = deparse(tree, {
    newline: ' ',
    tab: '  '
  });

Please try it out and let me know how it works for you.

from pgsql-parser.

pyramation avatar pyramation commented on August 29, 2024

Regarding tabs, would spaces work? For now, you can definitely use a JS regular expression to quickly remove those from any output.

Regarding semicolon, there is a way to do this in the existing system. Using what I reverse engineered from testing, here is what I do, I wrap my AST with a RawStmt to control semi-colons.

This will not return statement with semi-colon

const stmt = { /* AST tree */ }
const ast = {
    RawStmt: {
        stmt
    }
};

This will return statement with semi-colon

const stmt = { /* AST tree */ }
const ast = {
    RawStmt: {
        stmt_len: 1,
        stmt
    }
};

I'm also curious exactly, what is the issue with tabs, is it a cosmetic issue, and would you prefer to set the tab delimiter, or use 2 or 4 spaces instead?

For the semicolon, it's hard to decide the "proper" way to do this since the ASTs themselves already have a way, it may be best to use the reverse engineered spec via RawStmt. What are your thoughts? Perhaps this part just needs better documentation?

from pgsql-parser.

beeing avatar beeing commented on August 29, 2024

From your current deparse, I noticed there's newline and tabs (or spacing, not too sure its space or tab).

Since we are using the deparsed statement in server logs, this will create too many lines for the logs. And yes, I'm using regex replace currently.

I noticed that you add ; when there's stmt_len too, perhaps this is fine for now as I didn't noticed any issues.

from pgsql-parser.

beeing avatar beeing commented on August 29, 2024

Works perfectly. Thanks @pyramation

from pgsql-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.