Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prism Query Interface: Replace gRPC with custom handling of messages #495

Merged
merged 2,407 commits into from
May 16, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Apr 9, 2024

  1. More fixes for the merge

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    71476e3 View commit details
    Browse the repository at this point in the history
  2. INTEGER PRIMARY KEY

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    3dbe949 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcadb61 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    71fb0c7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5c4b6d0 View commit details
    Browse the repository at this point in the history
  6. Better error messages

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    63093ad View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    db6624a View commit details
    Browse the repository at this point in the history
  8. Make gradle happier

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    df51e29 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    551febd View commit details
    Browse the repository at this point in the history
  10. Python test pass again

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    b758034 View commit details
    Browse the repository at this point in the history
  11. Remove client UUID

    This may return in the future as a non-unique "client descriptor" to help admins determine who is using the interface.  But for now it is no longer needed to identify client sessions (this is now done with the socket).
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d516d9a View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    60b23cd View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ba21844 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    0f60f8e View commit details
    Browse the repository at this point in the history
  15. Pass fetchSize to getNextBatch

    This fixes a rather intricate bug: The ResultIterator would use the batch size passed on creation, but the fetch code would it compare with the fetch size specified in the message.  This would lead to fetch reporting isLast to early, when the fetch size in the message is different from in the initial execute message.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    23d2d60 View commit details
    Browse the repository at this point in the history
  16. Rework server loop to be somewhat async

    This way seems more logic.  Unparameterized statements are still a bit of a hack, but with the async changes, it should be possible to not send the statement id, but being able to cancel calls based on the message id.
    
    While working on the loop, change to allow the ConnectionRequest only once and only as the first message.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0f52f6d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    cc6b3f3 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    ced0da2 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c7ce631 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b5bbeb4 View commit details
    Browse the repository at this point in the history
  21. More tests

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    c8dc45d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    8c4ab2d View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    41603c9 View commit details
    Browse the repository at this point in the history
  24. add documentation comments to proto files for automated documentation…

    … generation
    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    c43cdf5 View commit details
    Browse the repository at this point in the history
  25. update doc comment of ProtoValue

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0e36fcc View commit details
    Browse the repository at this point in the history
  26. update doc comment of Entity

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a9f424a View commit details
    Browse the repository at this point in the history
  27. Update log message

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    b6a54d1 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    3e704c2 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    3562faa View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    79089f0 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    752cf92 View commit details
    Browse the repository at this point in the history
  32. fix connection accessor

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    bda39c1 View commit details
    Browse the repository at this point in the history
  33. fix syntax

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    752aa6b View commit details
    Browse the repository at this point in the history
  34. Switch to SocketChannels

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    36a392d View commit details
    Browse the repository at this point in the history
  35. Better log message

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    784e494 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    6e8d53f View commit details
    Browse the repository at this point in the history
  37. Bump protobuf version

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    ae28e34 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    0423f6b View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    fa5ae2f View commit details
    Browse the repository at this point in the history
  40. fix syntax

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d214dd1 View commit details
    Browse the repository at this point in the history
  41. fix syntax

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    2f8bec4 View commit details
    Browse the repository at this point in the history
  42. fix syntax

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    451d306 View commit details
    Browse the repository at this point in the history
  43. support statements of any language

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    ad8b88a View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    0c89a0a View commit details
    Browse the repository at this point in the history
  45. Add primary key to test table

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    042bff0 View commit details
    Browse the repository at this point in the history
  46. Add assertions for correct row counts

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    8b4f210 View commit details
    Browse the repository at this point in the history
  47. Fix failing connection tests

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    90b449d View commit details
    Browse the repository at this point in the history
  48. Add primary key to test table

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0f8c498 View commit details
    Browse the repository at this point in the history
  49. Add primary key to test table

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    f4309a1 View commit details
    Browse the repository at this point in the history
  50. Cleanup null deserialization

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0448687 View commit details
    Browse the repository at this point in the history
  51. Add integration tests for time, date and timestamp

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    60051cb View commit details
    Browse the repository at this point in the history
  52. Add UnixTransport

    This adds a getPeer method to the Transport interface, this call can
    be used to authenticate users.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    843ee96 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    826af18 View commit details
    Browse the repository at this point in the history
  54. Do not complain about EOF

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d4b311d View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    3e36ab7 View commit details
    Browse the repository at this point in the history
  56. Remove read lock

    Only one thread reads messages, so this is not necessary.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a6fe836 View commit details
    Browse the repository at this point in the history
  57. Add a very ugly "event loop"

    This loop interrupts running requests when the connection is closed.
    At the moment at most one request (per connection) is executed, the
    others are queued up.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    460e174 View commit details
    Browse the repository at this point in the history
  58. Set Thread names

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    098c3c4 View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    b6a4975 View commit details
    Browse the repository at this point in the history
  60. Sync protobuf files

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    294568b View commit details
    Browse the repository at this point in the history
  61. Add stopwatch reset

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    41d7795 View commit details
    Browse the repository at this point in the history
  62. Fix array metadata

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    97d4e52 View commit details
    Browse the repository at this point in the history
  63. Add result set closing between executions

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    05234e5 View commit details
    Browse the repository at this point in the history
  64. Debug failing tests

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    74b5029 View commit details
    Browse the repository at this point in the history
  65. Fix illegal casts

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0b79336 View commit details
    Browse the repository at this point in the history
  66. Fix meta only returning unique indexes

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    bf4c2f9 View commit details
    Browse the repository at this point in the history
  67. Use GenericRuntimeExceptions

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a4d33f9 View commit details
    Browse the repository at this point in the history
  68. Improve QueryInterfaceManager

    Quite a few improvements mirror the ones made to AdapterManager.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    2194ff0 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    249b863 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    aa9e15a View commit details
    Browse the repository at this point in the history
  71. Stricter visibility

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d5112d0 View commit details
    Browse the repository at this point in the history
  72. One interface, one server

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    211aee6 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    03ef6d4 View commit details
    Browse the repository at this point in the history
  74. Update Protobuf files

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    8e1f7fb View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    991e47b View commit details
    Browse the repository at this point in the history
  76. Remove unused imports

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    654e521 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    d6056c3 View commit details
    Browse the repository at this point in the history
  78. Update Protobuf Files

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    1cc73f9 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    082fc1d View commit details
    Browse the repository at this point in the history
  80. Add qualifier to interval

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    9de4610 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    a8895e1 View commit details
    Browse the repository at this point in the history
  82. cleanup mql test

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    da49cac View commit details
    Browse the repository at this point in the history
  83. Cleanup DdlTest

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    2faa637 View commit details
    Browse the repository at this point in the history
  84. Adjust tests for new meta

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a8275e8 View commit details
    Browse the repository at this point in the history
  85. Add PolyMap deserialization

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    fcd5c48 View commit details
    Browse the repository at this point in the history
  86. Remove unused interval types

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a0f38c9 View commit details
    Browse the repository at this point in the history
  87. Remove unused comments

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    88a1ffb View commit details
    Browse the repository at this point in the history
  88. Add request and response for closing result sets

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    8ee1125 View commit details
    Browse the repository at this point in the history
  89. Update protobuf files

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    05c223d View commit details
    Browse the repository at this point in the history
  90. Fix typo

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    bcd44f0 View commit details
    Browse the repository at this point in the history
  91. Add manual result set closing

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    238bd54 View commit details
    Browse the repository at this point in the history
  92. Turn around peer authentication

    This way a user that exists can authenticate as another user.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    9bdf468 View commit details
    Browse the repository at this point in the history
  93. Keep ProtoPolyType in sync with PolyType

    The ProtoPolyType enum must stay identical to PolyType, because
    
        ProtoPolyType.valueOf( polyType.getName() );
    
    is used to retrieve the correct member.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    7051567 View commit details
    Browse the repository at this point in the history
  94. Fix serialization tests

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    07008ea View commit details
    Browse the repository at this point in the history
  95. clean up result closing

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    818fd83 View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    0b08ec4 View commit details
    Browse the repository at this point in the history
  97. Do not close connection on error

    This default is somewhat better suited for the implementation of interactive shells.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    b04db0f View commit details
    Browse the repository at this point in the history
  98. Add unix listener in .polypheny folder

    This is a convenience feature in development and test mode
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    9e86b70 View commit details
    Browse the repository at this point in the history
  99. Rename proto to prism

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    e0f3375 View commit details
    Browse the repository at this point in the history
  100. Add unix listener in .polypheny folder for all modes

    The way the interface for the listener directly in the .polypheny
    folder is created still is sub-optimal, but it works for now.
    
    To create a UNIX socket, we first have to delete the previous sockets
    file.  Unfortunately, this works even when the previous socket is
    still active being listened at.  To prevent deleting and rebinding
    while another instance of Polypheny is using the path we do the
    following: Polypheny creates a file (the socket file name with ".lock"
    appended) and locks it exclusively.  This exclusive lock gets released
    when the interface is destroyed or on process exit.  That way no other
    Polypheny can bind to that path, while another instance is listening.
    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    ce20d65 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    1a91cf5 View commit details
    Browse the repository at this point in the history
  102. Configuration menu
    Copy the full SHA
    9b6e160 View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    b6b7294 View commit details
    Browse the repository at this point in the history
  104. Remove unused import

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    98dd862 View commit details
    Browse the repository at this point in the history
  105. Fix transport delay

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    069db55 View commit details
    Browse the repository at this point in the history
  106. Add file types, clean up jdbc types

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    8c2a1ec View commit details
    Browse the repository at this point in the history
  107. Fix unix transport

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    310a32d View commit details
    Browse the repository at this point in the history
  108. Unbreak build

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    d63b288 View commit details
    Browse the repository at this point in the history
  109. Configuration menu
    Copy the full SHA
    daa2369 View commit details
    Browse the repository at this point in the history
  110. Make namespaceType final

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    e169c6c View commit details
    Browse the repository at this point in the history
  111. Configuration menu
    Copy the full SHA
    cc1f0fb View commit details
    Browse the repository at this point in the history
  112. Add monitoring page

    Tobias Hafner authored and gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    0bde3f4 View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    c62d791 View commit details
    Browse the repository at this point in the history
  114. Fix build

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    2d2db46 View commit details
    Browse the repository at this point in the history
  115. Sync protofiles

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    627b49d View commit details
    Browse the repository at this point in the history
  116. Rename unix socket

    gartens committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    7ead805 View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    3fa7758 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. Configuration menu
    Copy the full SHA
    7436111 View commit details
    Browse the repository at this point in the history
  2. Remove debug class

    gartens committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    38d8e30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bc14ec8 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Mark fields as final

    gartens committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    86dcdd9 View commit details
    Browse the repository at this point in the history
  2. Remove heartbeat leftovers

    gartens committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    93d526d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    efb80bb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c47f005 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5528d1a View commit details
    Browse the repository at this point in the history
  6. Remove synchronized sections for debugging

    Tobias Hafner committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    5df9a2c View commit details
    Browse the repository at this point in the history
  7. Merge remote-tracking branch 'origin/proto-without-grpc' into proto-w…

    …ithout-grpc
    
    # Conflicts:
    #	plugins/proto-interface/src/main/java/org/polypheny/db/protointerface/ClientManager.java
    #	plugins/proto-interface/src/main/java/org/polypheny/db/protointerface/PIClient.java
    #	plugins/proto-interface/src/main/java/org/polypheny/db/protointerface/PIService.java
    Tobias Hafner committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    05bf1d8 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    89d684b View commit details
    Browse the repository at this point in the history
  2. Merge branch 'proto-without-grpc' of github.com:polypheny/Polypheny-D…

    …B into proto-without-grpc
    datomo committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    c1dde0c View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. fix for binary in mongo media, fixes, added handling for statistics w…

    …hen working with pig
    datomo committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    11c624d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b13ad15 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Improve event loop

    gartens committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d6e1be3 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2024

  1. Improve method name

    Tobias Hafner committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    3e91019 View commit details
    Browse the repository at this point in the history
  2. Fix wrong response message

    Tobias Hafner committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    3345101 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ea7e383 View commit details
    Browse the repository at this point in the history
  4. Disable hanging test

    Tobias Hafner committed Apr 17, 2024
    Configuration menu
    Copy the full SHA
    a58e768 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. Add transport version checks

    gartens committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    698c094 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58fcdb8 View commit details
    Browse the repository at this point in the history
  3. Exchange version only once

    gartens committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    e6439e9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    caa2255 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'proto-without-grpc' of github.com:polypheny/Polypheny-D…

    …B into proto-without-grpc
    datomo committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    dfb6d37 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    619fb04 View commit details
    Browse the repository at this point in the history
  2. Remove unused import

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    f5e0288 View commit details
    Browse the repository at this point in the history
  3. Fix typos

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    a220828 View commit details
    Browse the repository at this point in the history
  4. fixed named dynamic parameters

    datomo committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    3741bd1 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'proto-without-grpc' of github.com:polypheny/Polypheny-D…

    …B into proto-without-grpc
    datomo committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    b0be702 View commit details
    Browse the repository at this point in the history
  6. Bump protobuf

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    0c992e2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a5b490c View commit details
    Browse the repository at this point in the history
  8. Fix tests

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    941e249 View commit details
    Browse the repository at this point in the history
  9. Build driver for plugin tests

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    98290e1 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    2aab265 View commit details
    Browse the repository at this point in the history
  11. Fix ArrayTest

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    b147cba View commit details
    Browse the repository at this point in the history
  12. Fix VerticalPartitioningTest

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    5e61b56 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    971c8fa View commit details
    Browse the repository at this point in the history
  14. Fix SelectTest

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    5c3edaf View commit details
    Browse the repository at this point in the history
  15. Fix CqlTestHelper

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    8b059c0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    a07a1b9 View commit details
    Browse the repository at this point in the history
  17. Add missing import

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    a1ba3b4 View commit details
    Browse the repository at this point in the history
  18. Prepare for merge

    vogti committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    a1bac07 View commit details
    Browse the repository at this point in the history
  19. Cherry-pick docker improvements

    vogti committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    9a9ab6c View commit details
    Browse the repository at this point in the history
  20. Delete scannable entity

    vogti committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    635c1c1 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    f1c4178 View commit details
    Browse the repository at this point in the history
  22. Minor post-merge fixes

    vogti committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    ce0db61 View commit details
    Browse the repository at this point in the history
  23. Fix typos and adjust tests

    vogti committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    76b91f2 View commit details
    Browse the repository at this point in the history
  24. Fix MqlTestTemplate

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    f1db701 View commit details
    Browse the repository at this point in the history
  25. Fix CatalogTest

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    ccde81f View commit details
    Browse the repository at this point in the history
  26. Fix JdbcMetaTest

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    ae00081 View commit details
    Browse the repository at this point in the history
  27. Sync protofiles

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    f51ed37 View commit details
    Browse the repository at this point in the history
  28. Remove unused calls

    gartens committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    8509969 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2024

  1. Do not build test classes

    vogti committed Apr 20, 2024
    Configuration menu
    Copy the full SHA
    034d7a4 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Configuration menu
    Copy the full SHA
    f81f3b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Configuration menu
    Copy the full SHA
    b538ffa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b339cb0 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Configuration menu
    Copy the full SHA
    304c540 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. Fix ProtoValueTest

    gartens committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    23463d9 View commit details
    Browse the repository at this point in the history
  2. Complete named value processor tests

    Tobias Hafner committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    7ed34c8 View commit details
    Browse the repository at this point in the history
  3. fixed restore of idBuilder

    datomo committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    01a53e6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Configuration menu
    Copy the full SHA
    f5c1f42 View commit details
    Browse the repository at this point in the history
  2. Improve and clean-up build file

    vogti committed Apr 25, 2024
    Configuration menu
    Copy the full SHA
    2e446d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8c615ae View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Add task dependency declaration

    vogti committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    07eeeec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    be2f887 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Fix RelationalOnDocumentTest

    gartens committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    1270952 View commit details
    Browse the repository at this point in the history
  2. Remove outdated comment

    gartens committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    b483e3c View commit details
    Browse the repository at this point in the history
  3. Fix unit test

    Tobias Hafner committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    88d35db View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/proto-without-grpc' into proto-w…

    …ithout-grpc
    Tobias Hafner committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    3fde13b View commit details
    Browse the repository at this point in the history
  5. Expose isReady over HTTP

    gartens committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    b4a6117 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. Configuration menu
    Copy the full SHA
    21bd24e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    821fb23 View commit details
    Browse the repository at this point in the history
  3. Fix mongo add find test

    Tobias Hafner committed May 2, 2024
    Configuration menu
    Copy the full SHA
    ac98211 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/proto-without-grpc' into proto-w…

    …ithout-grpc
    Tobias Hafner committed May 2, 2024
    Configuration menu
    Copy the full SHA
    b52bc3e View commit details
    Browse the repository at this point in the history

Commits on May 3, 2024

  1. Configuration menu
    Copy the full SHA
    7b7634c View commit details
    Browse the repository at this point in the history
  2. Fix JdbcResultSetTest

    gartens committed May 3, 2024
    Configuration menu
    Copy the full SHA
    15449a7 View commit details
    Browse the repository at this point in the history
  3. Fix JdbcStatementTest

    gartens committed May 3, 2024
    Configuration menu
    Copy the full SHA
    009ef06 View commit details
    Browse the repository at this point in the history
  4. Remove debug output

    gartens committed May 3, 2024
    Configuration menu
    Copy the full SHA
    e2edc98 View commit details
    Browse the repository at this point in the history
  5. Fix UniqueConstraintTest

    gartens committed May 3, 2024
    Configuration menu
    Copy the full SHA
    1a7876b View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Get api version from gradle

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    63d73eb View commit details
    Browse the repository at this point in the history
  2. Sync proto files

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    cfb1dcd View commit details
    Browse the repository at this point in the history
  3. Update package name

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    c109244 View commit details
    Browse the repository at this point in the history
  4. Remove dead code

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    36dcf15 View commit details
    Browse the repository at this point in the history
  5. Sync proto project structure

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    cb4d31b View commit details
    Browse the repository at this point in the history
  6. Add compilation and version retrieval from prism package

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    1cf1a29 View commit details
    Browse the repository at this point in the history
  7. Fix file name

    Tobias Hafner committed May 5, 2024
    Configuration menu
    Copy the full SHA
    b1f7dbc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9e9fd59 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9837b43 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. Change interface description

    Tobias Hafner committed May 6, 2024
    Configuration menu
    Copy the full SHA
    563f7eb View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/proto-without-grpc' into proto-w…

    …ithout-grpc
    Tobias Hafner committed May 6, 2024
    Configuration menu
    Copy the full SHA
    b1ee9c9 View commit details
    Browse the repository at this point in the history
  3. Make custom type names consistent

    Tobias Hafner committed May 6, 2024
    Configuration menu
    Copy the full SHA
    64fb91d View commit details
    Browse the repository at this point in the history
  4. Add unit tests for null sorting

    Tobias Hafner committed May 6, 2024
    Configuration menu
    Copy the full SHA
    e356f41 View commit details
    Browse the repository at this point in the history
  5. some guardrails for neo4j

    datomo committed May 6, 2024
    Configuration menu
    Copy the full SHA
    7d50f35 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. moved physical schema operations (ddls) to commit, after integrity ch…

    …eck, fixed heisenbug in neo4j, bumped some versions
    datomo committed May 7, 2024
    Configuration menu
    Copy the full SHA
    e0bc1b9 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. moved some copy and logistics code into commit actions to fix failing…

    … partitioning/placement tests due to new integrity logic
    datomo committed May 8, 2024
    Configuration menu
    Copy the full SHA
    43c31ac View commit details
    Browse the repository at this point in the history
  2. Fix some operators

    gartens committed May 8, 2024
    Configuration menu
    Copy the full SHA
    910be48 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    10393b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2b4e6e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b7f386 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    64c0420 View commit details
    Browse the repository at this point in the history
  5. Rename from proto to prism

    vogti committed May 10, 2024
    Configuration menu
    Copy the full SHA
    e3a4daa View commit details
    Browse the repository at this point in the history
  6. Fix socket in .polypheny folder

    vogti committed May 10, 2024
    Configuration menu
    Copy the full SHA
    d993897 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    c379d5d View commit details
    Browse the repository at this point in the history
  2. fixes for isNull with arrays

    datomo committed May 13, 2024
    Configuration menu
    Copy the full SHA
    abe981e View commit details
    Browse the repository at this point in the history
  3. some fixes for Decimal scaling

    datomo committed May 13, 2024
    Configuration menu
    Copy the full SHA
    fb77d06 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    74e67f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d54be19 View commit details
    Browse the repository at this point in the history
  3. added correct type to batching

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    a3e432c View commit details
    Browse the repository at this point in the history
  4. fix for negative value check

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    54b20bd View commit details
    Browse the repository at this point in the history
  5. fix for null values

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    3336e6e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3b9eba8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4a81ad0 View commit details
    Browse the repository at this point in the history
  8. fixes for scale in mongodb

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    75ba8e7 View commit details
    Browse the repository at this point in the history
  9. fix for unnecessary parameter

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    8183c31 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    90e2cc0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5419e98 View commit details
    Browse the repository at this point in the history
  12. fixes for big neo4j numbers

    datomo committed May 14, 2024
    Configuration menu
    Copy the full SHA
    02ca9f0 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    9c1776f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d98ae45 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    590a6d4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    81cbf83 View commit details
    Browse the repository at this point in the history
  5. Fix system functions retrieval

    Tobias Hafner committed May 15, 2024
    Configuration menu
    Copy the full SHA
    dd6a71d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3bf8001 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8968c05 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    380da62 View commit details
    Browse the repository at this point in the history
  9. reverted hashcode method

    datomo committed May 15, 2024
    Configuration menu
    Copy the full SHA
    e8f2eb0 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7fde733 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bff41c3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2633272 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. fix for missing Neo4j mapping

    datomo committed May 16, 2024
    Configuration menu
    Copy the full SHA
    9197b77 View commit details
    Browse the repository at this point in the history
  2. fix for Neo4j date type

    datomo committed May 16, 2024
    Configuration menu
    Copy the full SHA
    9430d2d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    665d503 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c9b3cff View commit details
    Browse the repository at this point in the history