Skip to content

Commit dc26a71

Browse files
authored
Update to ProtoBuf.jl v1.3.0 (#223)
* Update to ProtoBuf.jl v1.3.0
1 parent 30efd71 commit dc26a71

4 files changed

Lines changed: 187 additions & 187 deletions

File tree

sdks/julia/LogicalQueryProtocol.jl/Manifest.toml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/julia/LogicalQueryProtocol.jl/src/gen/relationalai/lqp/v1/fragments_pb.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Autogenerated using ProtoBuf.jl v1.2.2
1+
# Autogenerated using ProtoBuf.jl v1.3.0
22
# original file: relationalai/lqp/v1/fragments.proto (proto3 syntax)
33

44
import ProtoBuf as PB
@@ -15,9 +15,9 @@ FragmentId(;id = UInt8[]) = FragmentId(id)
1515
PB.default_values(::Type{FragmentId}) = (;id = UInt8[])
1616
PB.field_numbers(::Type{FragmentId}) = (;id = 1)
1717

18-
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:FragmentId})
18+
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:FragmentId}, _endpos::Int=0, _group::Bool=false)
1919
id = UInt8[]
20-
while !PB.message_done(d)
20+
while !PB.message_done(d, _endpos, _group)
2121
field_number, wire_type = PB.decode_tag(d)
2222
if field_number == 1
2323
id = PB.decode(d, Vector{UInt8})
@@ -47,10 +47,10 @@ DebugInfo(;ids = Vector{RelationId}(), orig_names = Vector{String}()) = DebugInf
4747
PB.default_values(::Type{DebugInfo}) = (;ids = Vector{RelationId}(), orig_names = Vector{String}())
4848
PB.field_numbers(::Type{DebugInfo}) = (;ids = 1, orig_names = 2)
4949

50-
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:DebugInfo})
50+
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:DebugInfo}, _endpos::Int=0, _group::Bool=false)
5151
ids = PB.BufferedVector{RelationId}()
5252
orig_names = PB.BufferedVector{String}()
53-
while !PB.message_done(d)
53+
while !PB.message_done(d, _endpos, _group)
5454
field_number, wire_type = PB.decode_tag(d)
5555
if field_number == 1
5656
PB.decode!(d, ids)
@@ -85,11 +85,11 @@ Fragment(;id = nothing, declarations = Vector{Declaration}(), debug_info = nothi
8585
PB.default_values(::Type{Fragment}) = (;id = nothing, declarations = Vector{Declaration}(), debug_info = nothing)
8686
PB.field_numbers(::Type{Fragment}) = (;id = 1, declarations = 2, debug_info = 3)
8787

88-
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:Fragment})
88+
function PB.decode(d::PB.AbstractProtoDecoder, ::Type{<:Fragment}, _endpos::Int=0, _group::Bool=false)
8989
id = Ref{Union{Nothing,FragmentId}}(nothing)
9090
declarations = PB.BufferedVector{Declaration}()
9191
debug_info = Ref{Union{Nothing,DebugInfo}}(nothing)
92-
while !PB.message_done(d)
92+
while !PB.message_done(d, _endpos, _group)
9393
field_number, wire_type = PB.decode_tag(d)
9494
if field_number == 1
9595
PB.decode!(d, id)

0 commit comments

Comments
 (0)