In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
Editor to share with you how PostgreSQL to achieve similar CURRENT_DATE function functions, I believe that most people do not know much about it, so share this article for your reference, I hope you will learn a lot after reading this article, let's go to understand it!
I. realization
The implementation part involves transforming SQLValueFunction (setting the new column zz_sysdate to SQLValueFunction in gram.y), parsing SQLValueFunction and some internal processing of PG.
Convert SQLValueFunction
The SQLValueFunction conversion is in the file src/backend/parser/parse_expr.c, and the corresponding function is transformSQLValueFunction. The new / modified codes are as follows:
Static Node * transformSQLValueFunction (ParseState * pstate, SQLValueFunction * svf) {switch (svf- > op) {. Case SVFOP_ZZ_SYSDATE: svf- > type = DATEOID; break
Parsing SQLValueFunction
Parsing SQLValueFunction in the file src/backend/executor/execExprInterp.c, the corresponding function is ExecEvalSQLValueFunction, and the related code is as follows:
VoidExecEvalSQLValueFunction (ExprState * state, ExprEvalStep * op) {switch (svf- > op) {... Case SVFOP_ZZ_SYSDATE: * op- > resvalue = DateADTGetDatum (GetSQLCurrentDate ()); break
Internal processing
The internal processing of PG is in the file src/backend/utils/adt/ruleutils.c, and the corresponding function is get_rule_expr. The related code is as follows:
Static voidget_rule_expr (Node * node, deparse_context * context, bool showimplicit) {. Case T_SQLValueFunction: {SQLValueFunction * svf = (SQLValueFunction *) node; / * * Note: this code knows that typmod for time, timestamp, and * timestamptz just prints as integer. * / switch (svf- > op) {... Case SVFOP_ZZ_SYSDATE: appendStringInfoString (buf, "ZZ_SYSDATE"); break; II, source code interpretation
Parse_expr.c: handle expressions in parser, processing expressions in parsers
ExecExprInterp.c: analytic evaluation of expressions (steps)
Ruleutils.c: Functions to convert stored expressions/querytrees back to source text, transform and store expression / query tree to source text.
These are all the contents of the article "how to achieve functions similar to CURRENT_DATE functions in PostgreSQL". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.