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

SegFault when performing SELECT to alternate schema #34

Open
ghost opened this issue May 1, 2012 · 1 comment
Open

SegFault when performing SELECT to alternate schema #34

ghost opened this issue May 1, 2012 · 1 comment

Comments

@ghost
Copy link

ghost commented May 1, 2012

I am getting a SegFault when I try to do a SELECT to alternate schema. No SegFault when schema is not specified or changed. Assume code excerpts occurs after valid connection and authentication have taken place.

First scenario:

db.query().execute("SELECT * FROM greensboro.address_lt", function(error, rows, cols) { ... }

Yields:

Segmentation fault (core dumped)

Second scenario:

db.query().execute('ALTER SESSION SET CURRENT_SCHEMA = greensboro', function(error, rows, cols) {
    db.query().execute("SELECT * FROM address_lt", function(error, rows, cols) { ... }
}

Yields:

Segmentation fault (core dumped)

Details:

  • Oracle 11g
  • Ubuntu 32bit Server 12.04
  • Node 0.6.16
  • db-oracle 0.2.3
@ghost
Copy link
Author

ghost commented May 1, 2012

This might be an Oracle Instant Client issue. Repeatable with other Node Oracle driver. This might be a Close/Ignore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants