-
Notifications
You must be signed in to change notification settings - Fork 0
Caching in parser #19
Copy link
Copy link
Open
Labels
feature 🚀A collection of Task's that together adds new functionalityA collection of Task's that together adds new functionality
Milestone
Metadata
Metadata
Assignees
Labels
feature 🚀A collection of Task's that together adds new functionalityA collection of Task's that together adds new functionality
Parsing is, amongst others, used for parsing default values. These will often be the same for the same types in a lot of tables (e.g. converting a string to a date for datetime columns, or constants for string or numbers). Creating a parse tree takes time, and with a cache, we can skip a lot of parse tree creations.