Skip to content

Commit b5b1fdd

Browse files
committed
pyparsing#261 - fix table name in sql2dot.py example
1 parent 9e8ad93 commit b5b1fdd

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ Change Log
55
Version 3.0.0c1 - April, 2021
66
-----------------------------
77
- Removed internal comparison of results values against b"", which
8-
raised a BytesWarning when run with `python -bb`. Fixes issue reported
8+
raised a BytesWarning when run with `python -bb`. Fixes issue #271 reported
99
by Florian Bruhin, thank you!
1010

11+
- Fixed STUDENTS table in sql2dot.py example, fixes issue #261 reported by
12+
legrandlegrand - much better.
13+
1114

1215
Version 3.0.0b2 - December, 2020
1316
--------------------------------

examples/sql2dot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Adapted from a post at https://energyblog.blogspot.com/2006/04/blog-post_20.html.
99
#
1010
sampleSQL = """
11-
create table student
11+
create table students
1212
(
1313
student_id integer primary key,
1414
firstname varchar(20),

0 commit comments

Comments
 (0)