Skip to content

Commit

Permalink
Add rethinkdb-java driver project a sub-module.
Browse files Browse the repository at this point in the history
Add v2.4 support for BitWise operators. #150
Add v2.4 support for WriteHooks. #150
Modify Templates.csproj to point to rethinkdb-java submodule proto files.
  • Loading branch information
bchavez committed May 22, 2020
1 parent 0b2f541 commit bbcf719
Show file tree
Hide file tree
Showing 27 changed files with 792 additions and 10,829 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "Source/rethinkdb-java"]
path = Source/rethinkdb-java
url = https://github.com/rethinkdb/rethinkdb-java.git
77 changes: 77 additions & 0 deletions Source/RethinkDb.Driver/Generated/Ast/BitAnd.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@















//AUTOGENERATED, DO NOTMODIFY.
//Do not edit this file directly.

#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
// ReSharper disable CheckNamespace

using System;
using RethinkDb.Driver.Ast;
using RethinkDb.Driver.Model;
using RethinkDb.Driver.Proto;
using System.Collections;
using System.Collections.Generic;


namespace RethinkDb.Driver.Ast {

public partial class BitAnd : ReqlExpr {




public BitAnd (object arg) : this(new Arguments(arg), null) {
}
public BitAnd (Arguments args) : this(args, null) {
}
public BitAnd (Arguments args, OptArgs optargs)
: base(TermType.BIT_AND, args, optargs) {
}












/// <summary>
/// Get a single field from an object. If called on a sequence, gets that field from every object in the sequence, skipping objects that lack it.
/// </summary>
/// <param name="bracket"></param>
public new Bracket this[string bracket] => base[bracket];

/// <summary>
/// Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element.
/// </summary>
/// <param name="bracket"></param>
/// <returns></returns>
public new Bracket this[int bracket] => base[bracket];








}
}
77 changes: 77 additions & 0 deletions Source/RethinkDb.Driver/Generated/Ast/BitNot.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@















//AUTOGENERATED, DO NOTMODIFY.
//Do not edit this file directly.

#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
// ReSharper disable CheckNamespace

using System;
using RethinkDb.Driver.Ast;
using RethinkDb.Driver.Model;
using RethinkDb.Driver.Proto;
using System.Collections;
using System.Collections.Generic;


namespace RethinkDb.Driver.Ast {

public partial class BitNot : ReqlExpr {




public BitNot (object arg) : this(new Arguments(arg), null) {
}
public BitNot (Arguments args) : this(args, null) {
}
public BitNot (Arguments args, OptArgs optargs)
: base(TermType.BIT_NOT, args, optargs) {
}












/// <summary>
/// Get a single field from an object. If called on a sequence, gets that field from every object in the sequence, skipping objects that lack it.
/// </summary>
/// <param name="bracket"></param>
public new Bracket this[string bracket] => base[bracket];

/// <summary>
/// Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element.
/// </summary>
/// <param name="bracket"></param>
/// <returns></returns>
public new Bracket this[int bracket] => base[bracket];








}
}
77 changes: 77 additions & 0 deletions Source/RethinkDb.Driver/Generated/Ast/BitOr.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@















//AUTOGENERATED, DO NOTMODIFY.
//Do not edit this file directly.

#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
// ReSharper disable CheckNamespace

using System;
using RethinkDb.Driver.Ast;
using RethinkDb.Driver.Model;
using RethinkDb.Driver.Proto;
using System.Collections;
using System.Collections.Generic;


namespace RethinkDb.Driver.Ast {

public partial class BitOr : ReqlExpr {




public BitOr (object arg) : this(new Arguments(arg), null) {
}
public BitOr (Arguments args) : this(args, null) {
}
public BitOr (Arguments args, OptArgs optargs)
: base(TermType.BIT_OR, args, optargs) {
}












/// <summary>
/// Get a single field from an object. If called on a sequence, gets that field from every object in the sequence, skipping objects that lack it.
/// </summary>
/// <param name="bracket"></param>
public new Bracket this[string bracket] => base[bracket];

/// <summary>
/// Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element.
/// </summary>
/// <param name="bracket"></param>
/// <returns></returns>
public new Bracket this[int bracket] => base[bracket];








}
}
77 changes: 77 additions & 0 deletions Source/RethinkDb.Driver/Generated/Ast/BitSal.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@















//AUTOGENERATED, DO NOTMODIFY.
//Do not edit this file directly.

#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
// ReSharper disable CheckNamespace

using System;
using RethinkDb.Driver.Ast;
using RethinkDb.Driver.Model;
using RethinkDb.Driver.Proto;
using System.Collections;
using System.Collections.Generic;


namespace RethinkDb.Driver.Ast {

public partial class BitSal : ReqlExpr {




public BitSal (object arg) : this(new Arguments(arg), null) {
}
public BitSal (Arguments args) : this(args, null) {
}
public BitSal (Arguments args, OptArgs optargs)
: base(TermType.BIT_SAL, args, optargs) {
}












/// <summary>
/// Get a single field from an object. If called on a sequence, gets that field from every object in the sequence, skipping objects that lack it.
/// </summary>
/// <param name="bracket"></param>
public new Bracket this[string bracket] => base[bracket];

/// <summary>
/// Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element.
/// </summary>
/// <param name="bracket"></param>
/// <returns></returns>
public new Bracket this[int bracket] => base[bracket];








}
}
77 changes: 77 additions & 0 deletions Source/RethinkDb.Driver/Generated/Ast/BitSar.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@















//AUTOGENERATED, DO NOTMODIFY.
//Do not edit this file directly.

#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
// ReSharper disable CheckNamespace

using System;
using RethinkDb.Driver.Ast;
using RethinkDb.Driver.Model;
using RethinkDb.Driver.Proto;
using System.Collections;
using System.Collections.Generic;


namespace RethinkDb.Driver.Ast {

public partial class BitSar : ReqlExpr {




public BitSar (object arg) : this(new Arguments(arg), null) {
}
public BitSar (Arguments args) : this(args, null) {
}
public BitSar (Arguments args, OptArgs optargs)
: base(TermType.BIT_SAR, args, optargs) {
}












/// <summary>
/// Get a single field from an object. If called on a sequence, gets that field from every object in the sequence, skipping objects that lack it.
/// </summary>
/// <param name="bracket"></param>
public new Bracket this[string bracket] => base[bracket];

/// <summary>
/// Get the nth element of a sequence, counting from zero. If the argument is negative, count from the last element.
/// </summary>
/// <param name="bracket"></param>
/// <returns></returns>
public new Bracket this[int bracket] => base[bracket];








}
}
Loading

0 comments on commit bbcf719

Please sign in to comment.