Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement input by PostgreSQL

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail how to achieve input in PostgreSQL. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

I. input

The response of standard PG to zz_sysdate is:

Testdb=# select zz_sysdate from T1 error: column "zz_sysdate" does not existLINE 1: select zz_sysdate from T1

An error is reported and the prompt column does not exist.

In order for PG to recognize zz_sysdate, the lexical and parsing modules need to be modified.

Lexical morphology

The files involved include scan.l,kwlist.h

Scan.l:

Lexical file, zz_sysdate will be recognized as IDENT, this file does not need to be modified

Kwlist.h:

Keyword list, add a sentence at the end:

PG_KEYWORD ("zz_sysdate", ZZ_SYSDATE, RESERVED_KEYWORD)

RESERVED_KEYWORD means reserved keyword

Grammar

Syntax file is gram.y. You need to add ZZ_SYSDATE.

/ / add token, which corresponds to% token of ZZ_SYSDATE in lexical analysis. ZZ_SYSDATE// production reserved_keyword add ZZ_SYSDATE// Note: reserved_keyword is a non-Terminator, ZZ_SYSDATE is a Terminator reserved_keyword:... | ZZ_SYSDATE / / refer to current_date and add... in func_expr_common_subexpr. | ZZ_SYSDATE {$$= makeSQLValueFunction (SVFOP_ZZ_SYSDATE,-1, @ 1);}

In addition, to identify SVFOP_ZZ_SYSDATE, add to the yytokentype enumeration variable of preproc.h

ZZ_SYSDATE = 793

After the above modifications, PG can now recognize zz_sysdate, but the implementation will make errors.

This is the end of the article on "how to input PostgreSQL". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

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.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report