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

Expected type DATUM but found DATABASE after use of conn.use("database_name") #66

Open
jlove-nz opened this issue Jul 16, 2016 · 5 comments
Labels

Comments

@jlove-nz
Copy link

jlove-nz commented Jul 16, 2016

Using Groovy, I have a function that performs the following steps (pseudocode):

def conn = r.connection().connect()
def validate (Connection conn) {
1 check rethink database list
2 if isn't on the list, create it.
3 conn.use ("my database")
4 check table list
5 if "table a" isn't on the list, create it.
}

However, at step 4, where it uses:

r.tableList().run (conn)

I get in my logs:

23:19:16.939 [vert.x-eventloop-thread-1] DEBUG com.rethinkdb.ast.Query - JSON Send: Token: 4 [1,[62,[]],{"db":[14,[[14,["mydb"]]]],"read_mode":"majority","durability":"hard"}]
23:19:16.940 [pool-1-thread-1] DEBUG com.rethinkdb.ast.Query - JSON Recv: Token: 4 {"t":18,"e":3000000,"r":["Expected type DATUM but found DATABASE:\ndb("mydb")"],"b":[]}

It would appear that somehow the 'use' command is causing the database buffer to be set incorrectly.
Without the conn.use("my database"), the table creation works, however it creates the table against the test database instead of "my database" (which is expected behavour).

@jlove-nz
Copy link
Author

Right, I've been doing more testing.

It turns out this occurs if I add OptArgs.of("durability", "hard").with("read_mode", "majority") to the tablesList().run() request.

If I remove that OptArgs line (which is actually a shared object I reuse, it works.

@danielmewes
Copy link
Member

@jlove-nz What option do you pass into conn.use exactly? Are you passing a string (conn.use("name")) or an object of the type r.db("name") (conn.use(r.db("name")))? It looks like it needs to be the former.

@jlove-nz
Copy link
Author

jlove-nz commented Jul 18, 2016

Hi Daniel,
It's definitely a string -

class DatabaseValidator {
    String database_name = "n2ocs"
    ...
    Connection c = ....
    c.use (this.database_name)
}

@danielmewes
Copy link
Member

Ok. I wonder if something goes wrong due to the shared OptArgs object then. I think if you call .with, that modifies the object in place. Are you adding a db optarg anywhere in your code?

@jlove-nz
Copy link
Author

yes, I have this:
public static final OptArgs HARD_MAJORITY = OptArgs.of("durability", "hard").with("read_mode", "majority")
defined, and the code as using this when performing actions - e.g:
def result = r.tableCreate("audit_table_updates").optArg("durability", "hard").run (conn, HARD_MAJORITY)

@gabor-boros gabor-boros transferred this issue from rethinkdb/rethinkdb May 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants