├── Changes ├── META.json ├── Makefile ├── README.md ├── expected └── twitter_fdw.out ├── libjson-0.8 ├── Makefile ├── README ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── libjson-dev.dirs │ ├── libjson-dev.install │ ├── libjson.dirs │ ├── libjson.install │ ├── rules │ └── watch ├── documentation ├── json.c ├── json.h ├── jsonlint.c ├── libjson.pc.in └── tests │ ├── bad │ ├── empty.json │ ├── esc0.json │ ├── esc1.json │ ├── esc2.json │ ├── esc3.json │ ├── esc4.json │ ├── float0.json │ ├── float1.json │ ├── object0.json │ ├── object1.json │ ├── object2.json │ └── object3.json │ ├── good │ ├── 1.json │ ├── 2.json │ ├── 2obj.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ ├── 6.json │ ├── 7.json │ ├── c-comment.json │ ├── complex0.json │ ├── emptyobj.json │ ├── esc0.json │ ├── esc1.json │ ├── esc2.json │ ├── esc3.json │ ├── esc4.json │ ├── float0.json │ ├── float1.json │ ├── float2.json │ ├── multiobj.json │ └── yaml-comment.json │ └── runtest ├── sql └── twitter_fdw.sql ├── twitter_fdw--1.1.0.sql ├── twitter_fdw.c └── twitter_fdw.control /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/Changes -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/README.md -------------------------------------------------------------------------------- /expected/twitter_fdw.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/expected/twitter_fdw.out -------------------------------------------------------------------------------- /libjson-0.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/Makefile -------------------------------------------------------------------------------- /libjson-0.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/README -------------------------------------------------------------------------------- /libjson-0.8/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/changelog -------------------------------------------------------------------------------- /libjson-0.8/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /libjson-0.8/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/control -------------------------------------------------------------------------------- /libjson-0.8/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/copyright -------------------------------------------------------------------------------- /libjson-0.8/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /libjson-0.8/debian/libjson-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/include 3 | -------------------------------------------------------------------------------- /libjson-0.8/debian/libjson-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/libjson-dev.install -------------------------------------------------------------------------------- /libjson-0.8/debian/libjson.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /libjson-0.8/debian/libjson.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/libjson.install -------------------------------------------------------------------------------- /libjson-0.8/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/rules -------------------------------------------------------------------------------- /libjson-0.8/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/debian/watch -------------------------------------------------------------------------------- /libjson-0.8/documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/documentation -------------------------------------------------------------------------------- /libjson-0.8/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/json.c -------------------------------------------------------------------------------- /libjson-0.8/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/json.h -------------------------------------------------------------------------------- /libjson-0.8/jsonlint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/jsonlint.c -------------------------------------------------------------------------------- /libjson-0.8/libjson.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/libjson.pc.in -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/esc0.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "abc\x" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/esc1.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "abc\x" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/esc2.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "abc\ud801" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/esc3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/bad/esc3.json -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/esc4.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\y\uxf00" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/float0.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 123. 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/float1.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 1234.124e 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/object0.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/object1.json: -------------------------------------------------------------------------------- 1 | { 2 | "abc" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/object2.json: -------------------------------------------------------------------------------- 1 | { 2 | "abc": 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/bad/object3.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": [ 3 | 123 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/1.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 0 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/2obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/2obj.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/3.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "x" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/4.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": [] 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/5.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/6.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/7.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/c-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/c-comment.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/complex0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/complex0.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/emptyobj.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": [ {}, "abc" ] 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/esc0.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\b\r\t" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/esc1.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\u0000" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/esc2.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\u001f" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/esc3.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\ud802\udc01" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/esc4.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "\u1000\u2901\r\t\"test\"" 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/float0.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 0.124 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/float1.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 1242149142.4120894129 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/float2.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": 124.12e-4 3 | } 4 | -------------------------------------------------------------------------------- /libjson-0.8/tests/good/multiobj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/multiobj.json -------------------------------------------------------------------------------- /libjson-0.8/tests/good/yaml-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/good/yaml-comment.json -------------------------------------------------------------------------------- /libjson-0.8/tests/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/libjson-0.8/tests/runtest -------------------------------------------------------------------------------- /sql/twitter_fdw.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/sql/twitter_fdw.sql -------------------------------------------------------------------------------- /twitter_fdw--1.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/twitter_fdw--1.1.0.sql -------------------------------------------------------------------------------- /twitter_fdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/twitter_fdw.c -------------------------------------------------------------------------------- /twitter_fdw.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umitanuki/twitter_fdw/HEAD/twitter_fdw.control --------------------------------------------------------------------------------