leveldb.dictionary 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Copyright 2018 Google
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. separator=":"
  15. # Enum values for component labels
  16. terminator="0"
  17. tablename="5"
  18. batchid="10"
  19. canonicalid="11"
  20. targetid="12"
  21. userid="13"
  22. pathsegment="62"
  23. unknown="63"
  24. # Constants.
  25. "version"
  26. "mutation"
  27. "document_mutation"
  28. "mutation_queue"
  29. "target_global"
  30. "target"
  31. "query_target"
  32. "target_document"
  33. "document_target"
  34. "remote_document"
  35. # Special characters.
  36. underscore="_"
  37. dot="."
  38. semicolon=";"
  39. quote="'"
  40. quotes="\""
  41. foreslash="/"
  42. backslash="\\"
  43. dollar="$"
  44. hash="#"
  45. asterisk="*"
  46. bracket1="("
  47. bracket2=")"
  48. bracket3="{"
  49. bracket4="}"
  50. bracket5="<"
  51. bracket6=">"
  52. ques="?"
  53. excl="!"
  54. at="@"
  55. hat="^"
  56. and="&"
  57. plus="+"
  58. dash="-"
  59. mod="|"