<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/engine, branch 0.3.0</title>
<subtitle>github.com: andialbrecht/sqlparse.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/'/>
<entry>
<title>Fix formatting on INSERT (fixes #329)</title>
<updated>2019-03-10T07:03:05+00:00</updated>
<author>
<name>Fredy Wijaya</name>
<email>fredy.wijaya@gmail.com</email>
</author>
<published>2018-12-13T22:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=fa7def01d00fc7c5c3047b077bc0f1a4cdc1d10a'/>
<id>fa7def01d00fc7c5c3047b077bc0f1a4cdc1d10a</id>
<content type='text'>
This patch fixes the formatting on INSERT by creating a new
instance of sql.Values to group all the values.

SQL: insert into foo values (1, 'foo'), (2, 'bar'), (3, 'baz')

Before:
insert into foo
values (1,
        'foo'), (2,
                 'bar'), (3,
                          'baz')

After:
insert into foo
values (1, 'foo'),
       (2, 'bar'),
       (3, 'baz')
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch fixes the formatting on INSERT by creating a new
instance of sql.Values to group all the values.

SQL: insert into foo values (1, 'foo'), (2, 'bar'), (3, 'baz')

Before:
insert into foo
values (1,
        'foo'), (2,
                 'bar'), (3,
                          'baz')

After:
insert into foo
values (1, 'foo'),
       (2, 'bar'),
       (3, 'baz')
</pre>
</div>
</content>
</entry>
<entry>
<title>Code cleanup.</title>
<updated>2019-03-10T06:31:37+00:00</updated>
<author>
<name>Andreas Albrecht</name>
<email>andreas.albrecht@Admins-MacBook-Pro.local</email>
</author>
<published>2019-03-10T06:31:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=6a7eb243274e1f17c0bb99d65272c4313b9ee08c'/>
<id>6a7eb243274e1f17c0bb99d65272c4313b9ee08c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright header (fixes #372).</title>
<updated>2018-07-31T06:12:54+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2018-07-31T06:12:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=3853a076c63493f43e969cf4ddd2e642e92f02fb'/>
<id>3853a076c63493f43e969cf4ddd2e642e92f02fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos</title>
<updated>2017-11-29T21:52:15+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2017-11-29T16:56:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=43478c60394e09246ee6275f89ae434e429cc5b5'/>
<id>43478c60394e09246ee6275f89ae434e429cc5b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix handling of semicolon when grouping assignments (fixes #359).</title>
<updated>2017-09-24T06:54:01+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2017-09-24T06:54:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=097478e47fbc0423118f82a0a7b458c2e9dbea7b'/>
<id>097478e47fbc0423118f82a0a7b458c2e9dbea7b</id>
<content type='text'>
When grouping assignments that contain a semicolon itself, the
engine was too greedy. Assignments with semicolon were introduced
in 691c0400e5a7d8229b7dce09bf47176539add328.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When grouping assignments that contain a semicolon itself, the
engine was too greedy. Assignments with semicolon were introduced
in 691c0400e5a7d8229b7dce09bf47176539add328.
</pre>
</div>
</content>
</entry>
<entry>
<title>Re-order parsing so that comparisons are seens as identifiers (fixes #327).</title>
<updated>2017-04-18T06:50:50+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2017-04-18T06:50:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=dff274ca46e8a38b2f1615b99a799e3266dc8c5e'/>
<id>dff274ca46e8a38b2f1615b99a799e3266dc8c5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix special case for #284 when statement starts with orphaned AS.</title>
<updated>2016-10-24T18:06:39+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-10-24T18:06:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=b68e4b781b8d74b0222411e83a16408a83cde7d6'/>
<id>b68e4b781b8d74b0222411e83a16408a83cde7d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle operator grouping after identifying typecasts (fixes #297).</title>
<updated>2016-10-01T12:07:52+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-10-01T12:07:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=f0754a6b6540e37c8aa270975194101024d4b2f8'/>
<id>f0754a6b6540e37c8aa270975194101024d4b2f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct license link (fixes #288).</title>
<updated>2016-09-14T12:56:34+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-09-14T12:56:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=4430c5c163d8b6ffc89d83b506c8a478037d26ea'/>
<id>4430c5c163d8b6ffc89d83b506c8a478037d26ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #285 from vmuriart/unify_naming_schema</title>
<updated>2016-08-24T12:59:28+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-08-24T12:59:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=791a3312a247670cdeed61e52e8ca449dbb27afa'/>
<id>791a3312a247670cdeed61e52e8ca449dbb27afa</id>
<content type='text'>
Unify_naming_schema. Closes #283</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unify_naming_schema. Closes #283</pre>
</div>
</content>
</entry>
</feed>
