Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of explained plan in XML format #223

Open
wants to merge 19 commits into
base: master
Choose a base branch
from

Commits on Sep 5, 2019

  1. Explained plan format XML

    Implementation of explained plan in XML
    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 5, 2019
    Copy the full SHA
    9f91f55 View commit details
    Browse the repository at this point in the history
  2. Fix char case

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 5, 2019
    Copy the full SHA
    784b205 View commit details
    Browse the repository at this point in the history
  3. Another char case and format

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 5, 2019
    Copy the full SHA
    d6f374a View commit details
    Browse the repository at this point in the history
  4. unnescessary line

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 5, 2019
    Copy the full SHA
    685cb69 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2019

  1. added xmlns

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 9, 2019
    Copy the full SHA
    5bc28ce View commit details
    Browse the repository at this point in the history
  2. Fix closing apostrophes when extras occurred

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 9, 2019
    Copy the full SHA
    3abc02a View commit details
    Browse the repository at this point in the history
  3. header and escape for xml

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 9, 2019
    Copy the full SHA
    2e8d876 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2019

  1. Fixed interface and some minor changes

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 11, 2019
    Copy the full SHA
    23105b9 View commit details
    Browse the repository at this point in the history
  2. a little simplification

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 11, 2019
    Copy the full SHA
    dfb4906 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

  1. wrong name used

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 16, 2019
    Copy the full SHA
    72ce875 View commit details
    Browse the repository at this point in the history
  2. Xml Schema

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 16, 2019
    Copy the full SHA
    f0625ac View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2019

  1. More info in plan for First and Skip

    Information of First and Skip values.
    
    e.g. SELECT FIRST 5 SKIP 2 * FROM RDB$RELATIONS
    we will see
    limitRows=5 skipRows=2
    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 18, 2019
    Copy the full SHA
    a1068ee View commit details
    Browse the repository at this point in the history
  2. Fix provide info about First Skip only for TYPE_LITERAL node only

    Only TYPE_LITERAL nodes are accepted.
    Any other can contain subquery e.g.
    SELECT * FROM RDB$RELATIONS R ROWS (SELECT COUNT(*) FROM RDB$DATABASE)
    
    SELECT * FROM RDB$RELATIONS R ROWS (5-(SELECT COUNT(*) FROM RDB$DATABASE))
    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 18, 2019
    Copy the full SHA
    a0d3008 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2019

  1. remove not needed "Impure" from debug code

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 19, 2019
    Copy the full SHA
    9880d9a View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2019

  1. store statistic about memory and physical/logical operations into xml…

    … plan
    
    store statistics into plan about:
    - memory;
    - physical IO global and global per table;
    - logical IO global and global per table.
    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 20, 2019
    Copy the full SHA
    034593c View commit details
    Browse the repository at this point in the history
  2. Remove double "LogicalIO" node for table stats

    liviuslivius@poczta.onet.pl authored and liviuslivius@poczta.onet.pl committed Sep 20, 2019
    Copy the full SHA
    757a4ab View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2019

  1. updated xml schema and fixed validity

    karol.bieniaszewski@zaiks.org.pl committed Sep 25, 2019
    Copy the full SHA
    ebb845a View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2019

  1. fix name in closing tag

    karol.bieniaszewski@zaiks.org.pl committed Sep 26, 2019
    Copy the full SHA
    cbbd9ad View commit details
    Browse the repository at this point in the history
  2. Update ExplainedPlanXmlSchema.xsd

    karol.bieniaszewski@zaiks.org.pl committed Sep 26, 2019
    Copy the full SHA
    c5d2cc2 View commit details
    Browse the repository at this point in the history