<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/keywords.py, branch 0.4.4</title>
<subtitle>github.com: andialbrecht/sqlparse.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/'/>
<entry>
<title>Remove unnecessary parts in regex for bad escaping.</title>
<updated>2023-04-18T08:23:02+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2023-03-20T07:33:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=c457abd5f097dd13fb21543381e7cfafe7d31cfb'/>
<id>c457abd5f097dd13fb21543381e7cfafe7d31cfb</id>
<content type='text'>
The regex tried to deal with situations where escaping in the
SQL to be parsed was suspicious.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The regex tried to deal with situations where escaping in the
SQL to be parsed was suspicious.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup regex for detecting keywords (fixes #709).</title>
<updated>2023-03-20T07:46:10+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2023-03-20T07:46:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=fc76056fb8f0ec713a3f2a2b6206a3336932c382'/>
<id>fc76056fb8f0ec713a3f2a2b6206a3336932c382</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lexer documentation</title>
<updated>2023-01-02T07:54:47+00:00</updated>
<author>
<name>Simon Heisterkamp</name>
<email>simon@heisterkamp.dk</email>
</author>
<published>2022-12-01T10:35:42+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=e0d3928ba69d73ba874ca03ec4395e94cf1ab293'/>
<id>e0d3928ba69d73ba874ca03ec4395e94cf1ab293</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove type annotations for python 3.5 compatibility</title>
<updated>2023-01-02T07:54:47+00:00</updated>
<author>
<name>Simon Heisterkamp</name>
<email>simon@heisterkamp.dk</email>
</author>
<published>2022-11-30T15:00:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=8515d2edd70fc16d69aa7b1094f9b3534dfa74d9'/>
<id>8515d2edd70fc16d69aa7b1094f9b3534dfa74d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>configurable syntax</title>
<updated>2023-01-02T07:54:47+00:00</updated>
<author>
<name>Simon Heisterkamp</name>
<email>simon@heisterkamp.dk</email>
</author>
<published>2022-11-30T14:51:58+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=9a1cb5dddd1545c30b1e3a2c6f5d3514d079d93e'/>
<id>9a1cb5dddd1545c30b1e3a2c6f5d3514d079d93e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "add regex pattern to identify IN as a Compasion token"</title>
<updated>2022-12-30T09:57:31+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2022-12-30T09:57:31+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=e9241945801808d1db7f76bdccbbe9a200042c37'/>
<id>e9241945801808d1db7f76bdccbbe9a200042c37</id>
<content type='text'>
This reverts commit 28c4d4026e1d9389a99d8cd627c96fa360c17fc4.

See #694. The expectation is that IN is primarily recognized as a keyword,
although it acts as a comparison operator. This also matches the definition of
IN in most SQL syntax references where it is listed as a reserved
keyword (PostgreSQL:
https://www.postgresql.org/docs/current/sql-keywords-appendix.html, MySQL:
https://dev.mysql.com/doc/refman/8.0/en/keywords.html, for example).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 28c4d4026e1d9389a99d8cd627c96fa360c17fc4.

See #694. The expectation is that IN is primarily recognized as a keyword,
although it acts as a comparison operator. This also matches the definition of
IN in most SQL syntax references where it is listed as a reserved
keyword (PostgreSQL:
https://www.postgresql.org/docs/current/sql-keywords-appendix.html, MySQL:
https://dev.mysql.com/doc/refman/8.0/en/keywords.html, for example).
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow any unicode character as identifier name (fixes #641).</title>
<updated>2022-09-10T08:08:02+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2022-09-10T08:08:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=b72a8ff42f53cba0517b1dd9e8af051b4a060ecf'/>
<id>b72a8ff42f53cba0517b1dd9e8af051b4a060ecf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add docstring and comments.</title>
<updated>2022-09-06T19:26:49+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2022-09-06T19:26:49+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=07a2e81532daf62f1f4360e48ff322abeade7315'/>
<id>07a2e81532daf62f1f4360e48ff322abeade7315</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add DISTINCTROW keyword (fixes #677).</title>
<updated>2022-08-24T18:42:01+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2022-08-24T18:42:01+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=0bbfd5f8326fd4291c390858ba8ff482ff5ced70'/>
<id>0bbfd5f8326fd4291c390858ba8ff482ff5ced70</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add regex pattern to identify REGEXP as a Compasion token</title>
<updated>2022-08-08T09:00:18+00:00</updated>
<author>
<name>JavierPan</name>
<email>PeterSandwich@users.noreply.github.com</email>
</author>
<published>2021-11-10T04:48:18+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=9d2cb6fc950386e9e59f29faf0d3742c4b12572c'/>
<id>9d2cb6fc950386e9e59f29faf0d3742c4b12572c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
