-
Notifications
You must be signed in to change notification settings - Fork 13
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
ArrayOutBoundOfIndex in JDBC Driver #46
Comments
I have run Cypher with the latest version to reproduce, but I do not get error. |
Hi @bylee5 ,
PgArray.getArray use the buildArrayList(). the fieldString does not contain "=" , This statement will always execute ++startOffset |
@zzl221000 |
@bylee5 |
@zzl221000 |
Hello,
java.lang.ArrayIndexOutOfBoundsException: 2 at org.postgresql.jdbc.PgArray.buildArrayList(PgArray.java:442) at org.postgresql.jdbc.PgArray.getBaseTypeName(PgArray.java:779) at org.postgresql.jdbc.PgArray.getBaseType(PgArray.java:775) at com.intellij.database.remote.jdbc.impl.JdbcRemoteObject.wrapIfNeeded(JdbcRemoteObject.java:32) at com.intellij.database.remote.jdbc.impl.RemoteResultSetImpl.createInfoIfNeeded(RemoteResultSetImpl.java:1350) at com.intellij.database.remote.jdbc.impl.RemoteResultSetImpl.getObject(RemoteResultSetImpl.java:1272) at com.intellij.database.remote.jdbc.impl.RemoteResultSetImpl.getCurrentRow(RemoteResultSetImpl.java:1249) at com.intellij.database.remote.jdbc.impl.RemoteResultSetImpl.getObjects(RemoteResultSetImpl.java:1229) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:346) at sun.rmi.transport.Transport$1.run(Transport.java:200) at sun.rmi.transport.Transport$1.run(Transport.java:197) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.Transport.serviceCall(Transport.java:196) at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:568) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:826) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:683) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:682) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)
Cypher to reproduce the error:
MATCH (a) OPTIONAL MATCH (a)-[b*0..2]-() RETURN *
Thank You,
The text was updated successfully, but these errors were encountered: