diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/sqlite3.sqlite3-console | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/sqlite3.sqlite3-console')
-rw-r--r-- | tests/examplefiles/sqlite3.sqlite3-console | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/examplefiles/sqlite3.sqlite3-console b/tests/examplefiles/sqlite3.sqlite3-console deleted file mode 100644 index 3ec27135..00000000 --- a/tests/examplefiles/sqlite3.sqlite3-console +++ /dev/null @@ -1,27 +0,0 @@ -SQLite version 3.4.2 -Enter ".help" for instructions -sqlite> .schema -CREATE TABLE paste (paste_id integer, code text, parsed_code text, pub_date -varchar(24), language varchar(64), parent_id integer, url varchar(128)); -CREATE TABLE vars (key varchar(24), value varchar(128)); -sqlite> a ' - ...> ' - ...> ; -SQL error: near "a": syntax error -sqlite> %; -SQL error: near "%": syntax error -sqlite> select count(language), language from paste group by language order - ...> by count(language) desc; -144|python -76|text -22|pycon -9|ruby -7|c -7|js -6|html+django -4|html -4|tex -2|html+php -1|cpp -1|scheme -sqlite> |