Adding new syntax in postgre sql

Поиск
Список
Период
Сортировка
От ankit bhardwaj
Тема Adding new syntax in postgre sql
Дата
Msg-id CAC4R1nmqJ9s842jJVQbaBKbff8__Vq0DXjNnLs5B0iyVcUTrbA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Adding new syntax in postgre sql  (Andreas Karlsson <andreas@proxel.se>)
Список pgsql-hackers
I am new to postgre sql .And i want to add some new feature to postgresql
As a startup i have taken the project to add syntax for table partitioning

CREATE TABLE is modified to accept a PARTITION BY clause. This clause
contains one or more partition declarations. The syntax is as follows:

PARTITION BY {partition_type} (column_name[, column_name...])
[PARTITIONS number] (      partition_declaration[, partition_declaration...]
 )

The partition type can be one of HASH, RANGE or LIST.

so can anyone tell me from where to start .
I have read all the basics
but i dont know the control flow for adding new syntax.

so please tell me how to add new syntax
from parser to executor..



В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Tomas Vondra"
Дата:
Сообщение: Re: FDW API / flow charts for the docs?
Следующее
От: Andres Freund
Дата:
Сообщение: Re: buildfarm failures on smew and anole