/truth-dump.txt Secret
Created
January 12, 2025 06:09
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
D SELECT * FROM cities; | |
┌────────────────┬───────┐ | |
│ name │ id │ | |
│ varchar │ int32 │ | |
├────────────────┼───────┤ | |
│ Ottawa │ 16 │ | |
│ Paris │ 18 │ | |
│ Tokyo │ 20 │ | |
│ City of Mexico │ 22 │ | |
│ Madrid │ 24 │ | |
└────────────────┴───────┘ | |
D SELECT * FROM countries; | |
┌─────────┬───────┐ | |
│ name │ id │ | |
│ varchar │ int32 │ | |
├─────────┼───────┤ | |
│ Canada │ 15 │ | |
│ France │ 17 │ | |
│ Japan │ 19 │ | |
│ Mexico │ 21 │ | |
│ Spain │ 23 │ | |
└─────────┴───────┘ | |
D SELECT * FROM object_types; | |
┌─────────┬───────┐ | |
│ name │ id │ | |
│ varchar │ int32 │ | |
├─────────┼───────┤ | |
│ Country │ 3 │ | |
│ City │ 9 │ | |
└─────────┴───────┘ | |
D SELECT * FROM property_types; | |
┌─────────────────┬───────┐ | |
│ name │ id │ | |
│ varchar │ int32 │ | |
├─────────────────┼───────┤ | |
│ CapitalRelation │ 1 │ | |
│ InstanceOf │ 2 │ | |
└─────────────────┴───────┘ | |
D SELECT * FROM relations; | |
┌───────┬───────┬───────┬────────────┬────────────┬─────────────┬───────────┐ | |
│ src │ rtype │ dst │ start │ end │ probability │ viewpoint │ | |
│ int32 │ int32 │ int32 │ date │ varchar │ float │ int32 │ | |
├───────┼───────┼───────┼────────────┼────────────┼─────────────┼───────────┤ | |
│ 15 │ 1 │ 16 │ 2025-01-11 │ 9999-12-31 │ 1.0 │ 0 │ | |
│ 17 │ 1 │ 18 │ 2025-01-11 │ 9999-12-31 │ 1.0 │ 0 │ | |
│ 19 │ 1 │ 20 │ 2025-01-11 │ 9999-12-31 │ 1.0 │ 0 │ | |
│ 21 │ 1 │ 22 │ 2025-01-11 │ 9999-12-31 │ 1.0 │ 0 │ | |
│ 23 │ 1 │ 24 │ 2025-01-11 │ 9999-12-31 │ 1.0 │ 0 │ | |
└───────┴───────┴───────┴────────────┴────────────┴─────────────┴───────────┘ | |
D SELECT * FROM type_relations; | |
┌───────┬───────┬───────┐ | |
│ src │ rtype │ dst │ | |
│ int32 │ int32 │ int32 │ | |
├───────┼───────┼───────┤ | |
│ 4 │ 2 │ 3 │ | |
│ 5 │ 2 │ 3 │ | |
│ 6 │ 2 │ 3 │ | |
│ 7 │ 2 │ 3 │ | |
│ 8 │ 2 │ 3 │ | |
│ 10 │ 2 │ 9 │ | |
│ 11 │ 2 │ 9 │ | |
│ 12 │ 2 │ 9 │ | |
│ 13 │ 2 │ 9 │ | |
│ 14 │ 2 │ 9 │ | |
├───────┴───────┴───────┤ | |
│ 10 rows 3 columns │ | |
└───────────────────────┘ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment