-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rethinkdb-java driver project a sub-module.
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
Showing
27 changed files
with
792 additions
and
10,829 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} | ||
} |
Oops, something went wrong.