Advertisement
Guest User

file layout

a guest
Nov 11th, 2012
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.33 KB | None | 0 0
  1. jpipes@uberbox:~/repos/sqltoast$ tree
  2. .
  3. ├── AUTHORS
  4. ├── docs
  5. │   ├── Doxyfile
  6. │   └── header.html.in
  7. ├── examples
  8. │   ├── simple
  9. │   │   ├── simple.cc
  10. │   │   └── wscript
  11. │   └── wscript
  12. ├── README
  13. ├── sqltoast
  14. │   ├── ast.h
  15. │   ├── ast_node.cc
  16. │   ├── ast_node.h
  17. │   ├── common.h
  18. │   ├── nodes
  19. │   │   ├── column_default_value.h
  20. │   │   ├── column_definition.cc
  21. │   │   ├── column_definition.h
  22. │   │   ├── function.h
  23. │   │   ├── identifier.h
  24. │   │   ├── literal.h
  25. │   │   ├── statement.h
  26. │   │   └── statements
  27. │   │   ├── create_schema.h
  28. │   │   ├── create_table.cc
  29. │   │   ├── create_table.h
  30. │   │   ├── drop_schema.h
  31. │   │   └── select.h
  32. │   ├── parse.cc
  33. │   ├── parse.h
  34. │   ├── parser
  35. │   │   ├── column_definition.h
  36. │   │   ├── common_rules.h
  37. │   │   ├── create_schema.cc
  38. │   │   ├── create_schema.h
  39. │   │   ├── create_table.h
  40. │   │   ├── drop_schema.h
  41. │   │   ├── identifier_attributes.h
  42. │   │   ├── identifier_rules.h
  43. │   │   ├── key_value_list.h
  44. │   │   ├── specifier_attributes.h
  45. │   │   ├── specifier_rules.h
  46. │   │   └── table_constraint.h
  47. │   ├── visibility.h
  48. │   └── wscript
  49. ├── test_run.sh
  50. ├── tests
  51. │   ├── gtest
  52. │   │   ├── CHANGES
  53. │   │   ├── CONTRIBUTORS
  54. │   │   ├── COPYING
  55. │   │   ├── include
  56. │   │   │   └── gtest
  57. │   │   │   ├── gtest-death-test.h
  58. │   │   │   ├── gtest.h
  59. │   │   │   ├── gtest-message.h
  60. │   │   │   ├── gtest-param-test.h
  61. │   │   │   ├── gtest-param-test.h.pump
  62. │   │   │   ├── gtest_pred_impl.h
  63. │   │   │   ├── gtest-printers.h
  64. │   │   │   ├── gtest_prod.h
  65. │   │   │   ├── gtest-spi.h
  66. │   │   │   ├── gtest-test-part.h
  67. │   │   │   ├── gtest-typed-test.h
  68. │   │   │   └── internal
  69. │   │   │   ├── gtest-death-test-internal.h
  70. │   │   │   ├── gtest-filepath.h
  71. │   │   │   ├── gtest-internal.h
  72. │   │   │   ├── gtest-linked_ptr.h
  73. │   │   │   ├── gtest-param-util-generated.h
  74. │   │   │   ├── gtest-param-util-generated.h.pump
  75. │   │   │   ├── gtest-param-util.h
  76. │   │   │   ├── gtest-port.h
  77. │   │   │   ├── gtest-string.h
  78. │   │   │   ├── gtest-tuple.h
  79. │   │   │   ├── gtest-tuple.h.pump
  80. │   │   │   ├── gtest-type-util.h
  81. │   │   │   └── gtest-type-util.h.pump
  82. │   │   ├── README
  83. │   │   ├── src
  84. │   │   │   ├── gtest-all.cc
  85. │   │   │   ├── gtest.cc
  86. │   │   │   ├── gtest-death-test.cc
  87. │   │   │   ├── gtest-filepath.cc
  88. │   │   │   ├── gtest-internal-inl.h
  89. │   │   │   ├── gtest_main.cc
  90. │   │   │   ├── gtest-port.cc
  91. │   │   │   ├── gtest-printers.cc
  92. │   │   │   ├── gtest-test-part.cc
  93. │   │   │   └── gtest-typed-test.cc
  94. │   │   └── wscript
  95. │   ├── identifiers.cc
  96. │   ├── table_constraints.cc
  97. │   ├── test_column_definitions.cc
  98. │   ├── test_lex_create_schema.cc
  99. │   ├── test_literals.cc
  100. │   ├── test_manual_ast_construction.cc
  101. │   ├── test_sql_parser.cc
  102. │   └── wscript
  103. ├── valgrind.suppressions
  104. ├── waf
  105. └── wscript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement